Skip to main content

ustreamer_proto/
lib.rs

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