rtc_shared/lib.rs
1#![warn(rust_2018_idioms)]
2#![allow(dead_code)]
3
4#[cfg(feature = "crypto")]
5pub mod crypto;
6
7#[cfg(feature = "marshal")]
8pub mod marshal;
9
10#[cfg(feature = "replay")]
11pub mod replay_detector;
12
13pub mod error;
14pub(crate) mod transport;
15pub mod util;
16
17pub use transport::{
18 EcnCodepoint, FiveTuple, FourTuple, TaggedBytesMut, TransportContext, TransportMessage,
19 TransportProtocol,
20};