speed-cli 1.0.0

Comprehensive multi-protocol network performance testing CLI (TCP, UDP, QUIC, HTTP/1.1, HTTP/2, h2c, HTTP/3)
1
2
3
4
5
6
7
8
//! UDP blaster: a fixed-rate, no-retransmit UDP test protocol with
//! receiver-side loss / OOO / jitter accounting. See `protocol` for the
//! wire format. The previous STP / BBR implementation has been retired
//! - see the Phase 3 entry in the project plan for context.

pub mod client;
pub mod protocol;
pub mod server;