comparison src/http/ngx_http_request.h @ 608:3036c1836a24 NGINX_0_9_2

nginx 0.9.2 *) Feature: the "If-Unmodified-Since" client request header line support. *) Workaround: fallback to accept() syscall if accept4() was not implemented; the issue had appeared in 0.9.0. *) Bugfix: nginx could not be built on Cygwin; the issue had appeared in 0.9.0. *) Bugfix: for OpenSSL vulnerability CVE-2010-4180. Thanks to Maxim Dounin.
author Igor Sysoev <http://sysoev.ru>
date Mon, 06 Dec 2010 00:00:00 +0300
parents c456a023113c
children ce857f6b74a7
comparison
equal deleted inserted replaced
607:a87726a9033b 608:3036c1836a24
165 ngx_list_t headers; 165 ngx_list_t headers;
166 166
167 ngx_table_elt_t *host; 167 ngx_table_elt_t *host;
168 ngx_table_elt_t *connection; 168 ngx_table_elt_t *connection;
169 ngx_table_elt_t *if_modified_since; 169 ngx_table_elt_t *if_modified_since;
170 ngx_table_elt_t *if_unmodified_since;
170 ngx_table_elt_t *user_agent; 171 ngx_table_elt_t *user_agent;
171 ngx_table_elt_t *referer; 172 ngx_table_elt_t *referer;
172 ngx_table_elt_t *content_length; 173 ngx_table_elt_t *content_length;
173 ngx_table_elt_t *content_type; 174 ngx_table_elt_t *content_type;
174 175