mirror of
https://github.com/telemt/telemt.git
synced 2026-06-23 02:00:10 +07:00
9 lines
245 B
Rust
9 lines
245 B
Rust
|
|
//! Transport layer: connection pooling, socket utilities, proxy protocol
|
||
|
|
|
||
|
|
pub mod pool;
|
||
|
|
pub mod proxy_protocol;
|
||
|
|
pub mod socket;
|
||
|
|
|
||
|
|
pub use pool::ConnectionPool;
|
||
|
|
pub use proxy_protocol::{ProxyProtocolInfo, parse_proxy_protocol};
|
||
|
|
pub use socket::*;
|