moq_transport/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! An implementation of the MoQ Transport protocol.
//!
//! MoQ Transport is a pub/sub protocol over QUIC.
//! While originally designed for live media, MoQ Transport is generic and can be used for other live applications.
//! The specification is a work in progress and will change.
//! See the [specification](https://datatracker.ietf.org/doc/draft-ietf-moq-transport/) and [github](https://github.com/moq-wg/moq-transport) for any updates.
pub mod coding;
pub mod data;
pub mod error;
pub mod message;
pub mod serve;
pub mod session;
pub mod setup;
pub mod watch;