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
TcpListener
andTcpStream
provide functionality for communication over TCPUdpSocket
provides functionality for communication over UDPUnixListener
andUnixStream
provide functionality for communication over a Unix Domain Stream Socket (available on Unix only)UnixDatagram
provides functionality for communication over Unix Domain Datagram Socket (available on Unix only)
Modules§
Structs§
- TcpListener
tcp
A TCP socket server, listening for connections. - TcpStream
tcp
A TCP stream between a local and a remote socket. - UdpSocket
udp
A UDP socket - Unix
Datagram uds
An I/O object representing a Unix datagram socket. - Unix
Listener uds
A Unix socket which can accept connections from other Unix sockets. - Unix
Stream uds
A structure representing a connected Unix socket.
Traits§
- Convert or resolve without blocking to one or more
SocketAddr
values.
Functions§
- lookup_
host dns
Performs a DNS resolution.