hashiverse_server_lib/transport/mod.rs
1//! # Server-side transport implementations
2//!
3//! The inbound-accepting half of the transport stack: a full HTTPS transport with
4//! TLS and automatic Let's Encrypt certificate rotation, a plain TCP transport
5//! for testing and private LANs, and the kernel-level ipset-backed DDoS
6//! protection that both can plug into.
7
8pub mod ddos;
9pub mod tcp_transport;
10pub mod full_https_transport;
11pub mod https_transport_cert_refresher;
12
13#[cfg(test)]
14mod transport_tests;