Module net

Source
Expand description

TCP/UDP/Unix bindings for tokio.

This module contains the TCP/UDP/Unix networking types, similar to the standard library, which can be used to implement networking protocols.

§Organization

For IO resources not available in tokio::net, you can use AsyncFd.

Modules§

tcp
TCP utility types.
windows
Windows specific network types.

Structs§

TcpListener
A TCP socket server, listening for connections.
TcpSocket
A TCP socket that has not yet been converted to a TcpStream or TcpListener.
TcpStream
A TCP stream between a local and a remote socket.
UdpSocket
A UDP socket.

Traits§

ToSocketAddrs
Converts or resolves without blocking to one or more SocketAddr values.

Functions§

lookup_host
Performs a DNS resolution.