1 2 3 4 5 6 7 8 9 10 11
//! TCP socket. //! //! Includes synchronous and asynchronous functionality and configuration //! helpers for TCP sockets. mod async_impl; mod config; mod sync_impl; pub use async_impl::*; pub use config::*; pub use sync_impl::*;