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
//! Client-side components.
//!
//! - Transport quality assessment (RTT, loss, blockage)
//! - Optimal transport set selection
//! - Cover traffic generation based on network environment
//! - Self-healing: adaptive response to DPI interference

pub mod policy;
pub mod selfheal;

pub use policy::TransportPolicy;
pub use selfheal::SelfHealing;