1 2 3 4 5 6 7 8 9 10 11 12 13
//! # NxtQuic Network Simulator //! //! Deterministic network simulator for testing QUIC implementations //! under controlled conditions (latency, loss, bandwidth, jitter). #![forbid(unsafe_code)] #![warn(missing_docs)] pub mod channel; pub mod network; pub use channel::{SimChannel, QueuedDatagram}; pub use network::{SimulatedNetwork, NetworkConfig};