Home
last modified time | relevance | path

Searched defs:Streams (Results 1 – 3 of 3) sorted by relevance

/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h3/
Dstreams.rs109 pub(crate) struct Streams { struct
110 bidirectional_stream: HashMap<u64, BidirectionalStream>,
111 control_stream_id: Option<u64>,
112 peer_control_stream_id: Option<u64>,
136 impl Streams { argument
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/h2/
Dstreams.rs135 pub(crate) struct Streams { struct
137 pub(crate) max_send_id: StreamId,
139 pub(crate) max_recv_id: StreamId,
141 pub(crate) latest_remote_id: StreamId,
142 pub(crate) stream_recv_window_size: u32,
143 pub(crate) stream_send_window_size: u32,
144 max_concurrent_streams: u32,
145 current_concurrent_streams: u32,
146 flow_control: FlowControl,
147 pending_concurrency: VecDeque<StreamId>,
[all …]
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
Ddispatcher.rs609 streams: Streams, in new()