1//! TCP socket. 2//! 3//! Includes synchronous and asynchronous functionality and configuration 4//! helpers for TCP sockets. 5#[cfg(feature = "async")] 6mod async_impl; 7mod config; 8mod sync_impl; 9 10#[cfg(feature = "async")] 11pub use async_impl::*; 12pub use config::*; 13pub use sync_impl::*;