Exponentially easier to use moq-transport as there's no message handling required. This is a BREAKING CHANGE.
16 lines
419 B
Rust
16 lines
419 B
Rust
//! Messages used for the MoQ Transport handshake.
|
|
//!
|
|
//! After establishing the WebTransport session, the client creates a bidirectional QUIC stream.
|
|
//! The client sends the [Client] message and the server responds with the [Server] message.
|
|
//! Both sides negotate the [Version] and [Role].
|
|
|
|
mod client;
|
|
mod role;
|
|
mod server;
|
|
mod version;
|
|
|
|
pub use client::*;
|
|
pub use role::*;
|
|
pub use server::*;
|
|
pub use version::*;
|