1 2 3 4 5 6 7 8 9 10 11
//! In-band signaling and decoy protocol mechanisms. //! //! - Hidden control messages embedded in cover traffic //! - Distributed handshake via intermediary nodes / CDN edge //! - Decoy REST/gRPC endpoints for control data exchange pub mod decoy; pub mod inband; pub use decoy::{DecoyEndpoint, DecoyProfile, DecoyRouter}; pub use inband::InBandSignaling;