Skip to main content

moqtap_codec/draft12/
mod.rs

1//! MoQT wire codec for draft-12.
2//!
3//! Key changes from draft-11:
4//! - `track_alias` moves from Subscribe to SubscribeOk
5//! - SubscribeError no longer has trailing `track_alias`
6//! - New messages: Publish (0x1D), PublishOk (0x1E), PublishError (0x1F)
7//! - Subgroup stream type IDs shift from 0x08-0x0D to 0x10-0x15
8
9#[allow(missing_docs)]
10/// Data stream headers (subgroup, datagram, fetch, object).
11pub mod data_stream;
12#[allow(missing_docs)]
13/// Control message types with encode/decode.
14pub mod message;
15#[allow(missing_docs)]
16/// Draft-12 types.
17pub mod types;