std/sys/net/
mod.rs

1/// This module contains the implementations of `TcpStream`, `TcpListener` and
2/// `UdpSocket` as well as related functionality like DNS resolving.
3mod connection;
4pub use connection::*;
5
6mod hostname;
7pub use hostname::hostname;