moqtap-client 0.2.0

MoQT client library — QUIC transport, endpoint state machine, subscribe/fetch/namespace flows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! MoQT session lifecycle management.
//!
//! Handles the session-level concerns of the MoQT protocol: version
//! negotiation during setup, session state machine transitions, and
//! request ID allocation with parity enforcement.
//!
//! # Modules
//!
//! - `state` — Session state machine (Connecting -> Active -> Closed)
//! - `setup` — CLIENT_SETUP / SERVER_SETUP validation and version negotiation
//! - `request_id` — Request ID allocator with client/server parity rules

/// Request ID allocation with client/server parity enforcement.
pub mod request_id;
/// CLIENT_SETUP / SERVER_SETUP validation and version negotiation.
pub mod setup;
/// Session state machine (Connecting -> Active -> Closed).
pub mod state;