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