Tschuss Status Quo - Hallo, Zukunft!
This commit is contained in:
Alexey
2025-12-30 05:08:05 +03:00
parent 44169441b4
commit 3d9150a074
33 changed files with 6079 additions and 0 deletions

9
src/transport/mod.rs Normal file
View File

@@ -0,0 +1,9 @@
//! 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::*;