stochastic-routing-extended 1.0.2

SRX (Stochastic Routing eXtended) — a next-generation VPN protocol with stochastic routing, DPI evasion, post-quantum cryptography, and multi-transport channel splitting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Stochastic orthogonal routing.
//!
//! Implements channel hopping, routing mask generation, transport selection,
//! and non-linear retry strategies.

pub mod aggregation;
pub mod hopping;
pub mod mask;
pub mod retry;

pub use aggregation::BandwidthAggregator;
pub use hopping::ChannelHopper;
pub use mask::RoutingMask;
pub use retry::RetryStrategy;