pub
pub use Header;
pub use decode_stateless;
/// Upper bound on a single QPACK-encoded header (or trailer) block we're
/// willing to decode. Prevents an unbounded allocator hit from a malicious
/// peer. Should be aligned with our advertised MAX_HEADER_LIST_SIZE setting.
pub const MAX_HEADER_BLOCK_BYTES: u64 = 64 * 1024;
pub use Dispatcher;
pub use Dispatcher as DispatcherV2;