Home
last modified time | relevance | path

Searched refs:http2_max_header_list_size (Results 1 – 4 of 4) sorted by relevance

/tonic/tonic/src/transport/channel/
H A Dendpoint.rs36 pub(crate) http2_max_header_list_size: Option<u32>, field
303 pub fn http2_max_header_list_size(self, size: u32) -> Self { in http2_max_header_list_size() method
305 http2_max_header_list_size: Some(size), in http2_max_header_list_size()
463 http2_max_header_list_size: None, in from()
/tonic/tests/integration_tests/tests/
H A Dhttp2_max_header_list_size.rs56 .http2_max_header_list_size(u32::try_from(N * 2).unwrap()) in test_http_max_header_list_size_and_long_errors()
/tonic/tonic/src/transport/server/
H A Dmod.rs104 http2_max_header_list_size: Option<u32>, field
128 http2_max_header_list_size: None, in default()
348 pub fn http2_max_header_list_size(self, max: impl Into<Option<u32>>) -> Self { in http2_max_header_list_size() method
350 http2_max_header_list_size: max.into(), in http2_max_header_list_size()
531 http2_max_header_list_size: self.http2_max_header_list_size, in layer()
652 let max_header_list_size = self.http2_max_header_list_size; in serve_internal()
/tonic/tonic/src/transport/channel/service/
H A Dconnection.rs54 if let Some(val) = endpoint.http2_max_header_list_size { in new()