comparison src/http/v3/ngx_http_v3.h @ 8707:ffcaf0aad9f2 quic

HTTP/3: limited client header size. The limit is the size of all large client header buffers. Client header size is the total size of all client header names and values.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 17 Feb 2021 11:58:32 +0300
parents 3057bae4dba7
children 265062a99043
comparison
equal deleted inserted replaced
8706:3057bae4dba7 8707:ffcaf0aad9f2
97 ngx_array_t *pushes; 97 ngx_array_t *pushes;
98 } ngx_http_v3_loc_conf_t; 98 } ngx_http_v3_loc_conf_t;
99 99
100 100
101 struct ngx_http_v3_parse_s { 101 struct ngx_http_v3_parse_s {
102 size_t header_limit;
102 ngx_http_v3_parse_headers_t headers; 103 ngx_http_v3_parse_headers_t headers;
103 ngx_http_v3_parse_data_t body; 104 ngx_http_v3_parse_data_t body;
104 }; 105 };
105 106
106 107