moq_transport/
lib.rs

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