comparison src/http/ngx_http_spdy.h @ 5525:206c56e23a96

SPDY: better name for frame entries counter. The "headers" is not a good term, since it is used not only to count name/value pairs in the HEADERS block but to count SETTINGS entries too. Moreover, one name/value pair in HEADERS can contain multiple http headers with the same name. No functional changes.
author Valentin Bartenev <vbart@nginx.com>
date Wed, 22 Jan 2014 04:58:19 +0400
parents b7ee1bae0ffa
children d5de6c25b759
comparison
equal deleted inserted replaced
5524:03c198bb2acf 5525:206c56e23a96
98 ngx_http_spdy_out_frame_t *last_out; 98 ngx_http_spdy_out_frame_t *last_out;
99 ngx_http_spdy_stream_t *last_stream; 99 ngx_http_spdy_stream_t *last_stream;
100 100
101 ngx_http_spdy_stream_t *stream; 101 ngx_http_spdy_stream_t *stream;
102 102
103 ngx_uint_t headers; 103 ngx_uint_t entries;
104 size_t length; 104 size_t length;
105 u_char flags; 105 u_char flags;
106 106
107 ngx_uint_t last_sid; 107 ngx_uint_t last_sid;
108 108