[−][src]Module tokio::net
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
andUdpFramed
provide functionality for communication over UDPUnixListener
andUnixStream
provide functionality for communication over a Unix Domain Socket (available on Unix only)
Modules
tcp |
TCP bindings for |
udp |
UDP bindings for |
unix |
Unix domain socket bindings for |
Structs
TcpListener |
An I/O object representing a TCP socket listening for incoming connections. |
TcpStream |
An I/O object representing a TCP stream connected to a remote endpoint. |
UdpFramed |
A unified |
UdpSocket |
An I/O object representing a UDP socket. |
UnixListener |
A Unix socket which can accept connections from other Unix sockets. |
UnixStream |
A structure representing a connected Unix socket. |