Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/config/
H A Dhttp.rs71 pub(crate) struct H2Config { struct
72 max_frame_size: u32,
73 max_header_list_size: u32,
74 header_table_size: u32,
75 init_conn_window_size: u32,
76 init_stream_window_size: u32,
77 enable_push: bool,
78 allowed_cache_frame_size: usize,
79 use_huffman: bool,
82 impl H2Config { implementation
[all …]
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
H A Dpool.rs130 config: H2Config, in conn_h2()
166 config: H2Config, in conn_negotiate()
217 config: H2Config, in dispatch_h2_conn()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http_client/src/util/
H A Ddispatcher.rs276 pub(crate) fn http2(config: H2Config, io: S) -> Self { in http2()
285 pub(crate) fn new(config: H2Config, io: S) -> Self { in new()