1 2 3 4 5 6 7 8 9 10 11
//! Shared protocol types for the ultra-streamer pipeline. //! //! Defines the binary wire formats for: //! - Encoded video frame packets (server → browser) //! - Input events (browser → server) //! - Quality/session control messages (bidirectional) pub mod control; pub mod frame; pub mod input; pub mod quality;