comparison src/http/v2/ngx_http_v2_module.h @ 7774:827202ca1269

HTTP/2: removed http2_max_field_size and http2_max_header_size. Instead, size of one large_client_header_buffers buffer and all large client header buffers are used.
author Maxim Dounin <mdounin@mdounin.ru>
date Thu, 11 Feb 2021 21:52:26 +0300
parents f790816a0e87
children 08ef02ad5c54
comparison
equal deleted inserted replaced
7773:b64f553b1291 7774:827202ca1269
22 22
23 typedef struct { 23 typedef struct {
24 size_t pool_size; 24 size_t pool_size;
25 ngx_uint_t concurrent_streams; 25 ngx_uint_t concurrent_streams;
26 ngx_uint_t concurrent_pushes; 26 ngx_uint_t concurrent_pushes;
27 size_t max_field_size;
28 size_t max_header_size;
29 size_t preread_size; 27 size_t preread_size;
30 ngx_uint_t streams_index_mask; 28 ngx_uint_t streams_index_mask;
31 } ngx_http_v2_srv_conf_t; 29 } ngx_http_v2_srv_conf_t;
32 30
33 31