h3session 0.6.0

HTTP/3 frame parser and QPACK header decompression for stream-level data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(feature = "tracing")]
macro_rules! trace_debug {
    ($($arg:tt)*) => { ::tracing::debug!($($arg)*) }
}
#[cfg(not(feature = "tracing"))]
macro_rules! trace_debug {
    ($($arg:tt)*) => {};
}
pub(crate) use trace_debug;

mod frame;
mod qpack;
mod state;

pub use frame::{Frame, FrameType};
pub use qpack::QpackDecoder;
pub use state::{H3ConnectionState, H3StreamState, ParsedH3Message};