1 2 3 4 5 6 7 8 9 10 11 12
pub mod auth; pub mod frame; pub mod message; pub mod stream; pub mod tls; pub const ALPN_QUIC_HTTP: &[&[u8]] = &[b"hq-29"]; pub const HEADER_LENGTH: usize = 3; pub enum StreamTypeHeader { StreamTypeBinary = 0, StreamTypePacket = 1, }