Module net
Networking primitives for TCP/UDP communication.
This module provides networking functionality for the Transmission Control and User Datagram Protocols, as well as types for IP and socket addresses and functions related to network properties.
Organization
TcpListenerandTcpStreamprovide functionality for communication over TCPUdpSocketprovides functionality for communication over UDPIpAddrrepresents IP addresses of either IPv4 or IPv6;Ipv4AddrandIpv6Addrare respectively IPv4 and IPv6 addressesSocketAddrrepresents socket addresses of either IPv4 or IPv6;SocketAddrV4andSocketAddrV6are respectively IPv4 and IPv6 socket addressesToSocketAddrsis a trait that is used for generic address resolution when interacting with networking objects likeTcpListener,TcpStreamorUdpSocket- Other types are return or parameter types for various methods in this module
Rust disables inheritance of socket objects to child processes by default when possible. For
example, through the use of the CLOEXEC flag in UNIX systems or the HANDLE_FLAG_INHERIT
flag on Windows.
Enums
-
Shutdown
Possible values which can be passed to the
TcpStream::shutdownmethod.