moqtap_proxy/lib.rs
1#![deny(missing_docs)]
2
3//! MoQT intercepting proxy — transparent stream forwarding with inline
4//! frame parsing and observation.
5//!
6//! This crate provides a transparent proxy that sits between a MoQT client
7//! and relay, forwarding all bytes bidirectionally while parsing MoQT frames
8//! inline to emit structured events. It does not participate in MoQT state
9//! management — it observes and optionally mutates, but never acts as an
10//! endpoint.
11
12pub mod error;
13pub mod event;
14pub mod hook;
15pub mod listener;
16pub mod observer;
17pub mod parser;
18pub mod proxy;
19pub mod session;
20
21#[cfg(feature = "cert-gen")]
22pub mod cert;