Home
last modified time | relevance | path

Searched defs:FrameDecoder (Results 1 – 4 of 4) sorted by relevance

/commonlibrary/rust/ylong_http/ylong_http/src/h2/
Ddecoder.rs173 pub struct FrameDecoder { struct
174 buffer: Vec<u8>,
176 offset: usize,
177 max_frame_size: u32,
179 stage: Stage,
181 header: FrameHeader,
182 hpack: HpackDecoderLayer,
185 continuations: Continuations,
290 impl Default for FrameDecoder { implementation
313 impl FrameDecoder { impl
/commonlibrary/rust/ylong_http/ylong_http/src/h3/
Ddecoder.rs46 pub struct FrameDecoder { struct
47 qpack_decoder: QpackDecoder,
48 streams: HashMap<u64, DecodedH3Stream>,
96 impl FrameDecoder { impl
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
Doutput.rs62 decoder: FrameDecoder, in new()
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h3/
Dstream_manager.rs60 decoder: FrameDecoder, in new()