moqtap-client 0.3.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 (draft-09).
//!
//! Handles the session-level concerns of the MoQT protocol: version
//! negotiation during setup, session state machine transitions, and
//! subscribe ID allocation (monotonic, no parity rule).
//!
//! # Modules
//!
//! - `state` — Session state machine (Connecting -> Active -> Closed)
//! - `setup` — CLIENT_SETUP / SERVER_SETUP validation and version negotiation
//! - `subscribe_id` — Monotonic subscribe ID allocator (shared by SUBSCRIBE and FETCH)

/// CLIENT_SETUP / SERVER_SETUP validation and version negotiation.
pub mod setup;
/// Session state machine (Connecting -> Active -> Closed).
pub mod state;
/// Monotonic subscribe ID allocation.
pub mod subscribe_id;