//! Streaming Protocol - HTIP-Inspired Delivery
//!
//! Binary rule streaming with XOR delta patching for efficient sync.
pub use ;
pub use ;
pub use ;
pub use ;
/// Streaming protocol version
pub const STREAM_VERSION: u8 = 1;
/// Maximum chunk size (64KB)
pub const MAX_CHUNK_SIZE: usize = 64 * 1024;