comparison src/http/v2/ngx_http_v2.h @ 6285:1f26bf65b1bc

HTTP/2: changed behavior of the "http2_max_field_size" directive. Now it limits only the maximum length of literal string (either raw or compressed) in HPACK request header fields. It's easier to understand and to describe in the documentation.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 27 Oct 2015 23:16:35 +0300
parents b78df0822168
children ec6b07be88a5
comparison
equal deleted inserted replaced
6284:66ee1c5cb6aa 6285:1f26bf65b1bc
78 unsigned parse_name:1; 78 unsigned parse_name:1;
79 unsigned parse_value:1; 79 unsigned parse_value:1;
80 unsigned index:1; 80 unsigned index:1;
81 ngx_http_v2_header_t header; 81 ngx_http_v2_header_t header;
82 size_t header_limit; 82 size_t header_limit;
83 size_t field_limit;
84 u_char field_state; 83 u_char field_state;
85 u_char *field_start; 84 u_char *field_start;
86 u_char *field_end; 85 u_char *field_end;
87 size_t field_rest; 86 size_t field_rest;
88 ngx_pool_t *pool; 87 ngx_pool_t *pool;