]> git.lizzy.rs Git - connect-rs.git/blob - src/tcp/mod.rs
renamed server to listener and add thorough documentation
[connect-rs.git] / src / tcp / mod.rs
1 //! TCP transport client and listener implementations.
2 //!
3 //! <br/>
4 //!
5 //! This module primarily exposes the TCP client implementation over a [`Connection`] type and the
6 //! TCP listener implementation as [`TcpListener`].
7
8 #[allow(unused_imports)]
9 pub(crate) use crate::Connection;
10
11 pub(crate) mod client;
12 pub(crate) mod listener;
13
14 pub use client::*;
15 pub use listener::*;