rtmp_rs/protocol/mod.rs
1//! RTMP wire protocol implementation
2//!
3//! This module handles the low-level protocol details:
4//! - Handshake (C0C1C2/S0S1S2 exchange)
5//! - Chunk stream multiplexing and demultiplexing
6//! - Message framing and parsing
7
8pub mod chunk;
9pub mod constants;
10pub mod handshake;
11pub mod message;
12pub mod quirks;
13
14pub use chunk::{ChunkDecoder, ChunkEncoder};
15pub use handshake::{Handshake, HandshakeRole};
16pub use message::RtmpMessage;