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