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
//! Server-side components.
//!
//! - Anonymized multi-port listener with dynamic port rotation
//! - Worker pools for each transport type
//! - TLS context management
//! - CDN/Edge proxy support

pub mod listener;
pub mod pool;
pub mod worker;

pub use listener::DynamicListener;
pub use pool::{ConnectionPool, PeerState};
pub use worker::WorkerPool;