comparison src/http/v2/ngx_http_v2.h @ 6249:081a073e5164

HTTP/2: fixed header block parsing with CONTINUATION frames (#792). It appears that the CONTINUATION frames don't need to be aligned to bounds of individual headers.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 22 Sep 2015 01:40:04 +0300
parents 257b51c37c5a
children b78df0822168
comparison
equal deleted inserted replaced
6248:f5380c244cd7 6249:081a073e5164
188 size_t header_limit; 188 size_t header_limit;
189 189
190 unsigned handled:1; 190 unsigned handled:1;
191 unsigned blocked:1; 191 unsigned blocked:1;
192 unsigned exhausted:1; 192 unsigned exhausted:1;
193 unsigned end_headers:1;
194 unsigned in_closed:1; 193 unsigned in_closed:1;
195 unsigned out_closed:1; 194 unsigned out_closed:1;
196 unsigned skip_data:2; 195 unsigned skip_data:2;
197 }; 196 };
198 197