comparison src/http/modules/ngx_http_gunzip_filter_module.c @ 692:6db6e93f55ee NGINX_1_3_9

nginx 1.3.9 *) Feature: support for chunked transfer encoding while reading client request body. *) Feature: the $request_time and $msec variables can now be used not only in the "log_format" directive. *) Bugfix: cache manager and cache loader processes might not be able to start if more than 512 listen sockets were used. *) Bugfix: in the ngx_http_dav_module.
author Igor Sysoev <http://sysoev.ru>
date Tue, 27 Nov 2012 00:00:00 +0400
parents b5b7eea22fda
children
comparison
equal deleted inserted replaced
691:acfd484db0ca 692:6db6e93f55ee
163 r->headers_out.content_encoding->hash = 0; 163 r->headers_out.content_encoding->hash = 0;
164 r->headers_out.content_encoding = NULL; 164 r->headers_out.content_encoding = NULL;
165 165
166 ngx_http_clear_content_length(r); 166 ngx_http_clear_content_length(r);
167 ngx_http_clear_accept_ranges(r); 167 ngx_http_clear_accept_ranges(r);
168 ngx_http_clear_etag(r);
168 169
169 return ngx_http_next_header_filter(r); 170 return ngx_http_next_header_filter(r);
170 } 171 }
171 172
172 173