Skip to main content

host_extensions/protocol/
mod.rs

1//! Media & data signaling protocol constants.
2//!
3//! Shared between host-rs (native) and dotli (WASM) to ensure interop.
4//! Contains only pure functions with no platform-specific dependencies.
5
6mod channel;
7mod peer;
8mod signal;
9
10pub use channel::*;
11pub use peer::*;
12pub use signal::*;