comparison src/http/ngx_http_request.h @ 489:45a460f82aec release-0.1.19

nginx-0.1.19-RELEASE import *) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections.
author Igor Sysoev <igor@sysoev.ru>
date Wed, 16 Feb 2005 13:40:36 +0000
parents 4ebe09b07e30
children d7c90bb5ce83
comparison
equal deleted inserted replaced
488:24c8dcb960fd 489:45a460f82aec
148 148
149 #if (NGX_HTTP_PROXY) 149 #if (NGX_HTTP_PROXY)
150 ngx_table_elt_t *x_forwarded_for; 150 ngx_table_elt_t *x_forwarded_for;
151 ngx_table_elt_t *x_real_ip; 151 ngx_table_elt_t *x_real_ip;
152 ngx_table_elt_t *x_url; 152 ngx_table_elt_t *x_url;
153 #endif
154
155 #if (NGX_HTTP_HEADERS)
156 ngx_table_elt_t *accept;
157 ngx_table_elt_t *accept_language;
153 #endif 158 #endif
154 159
155 ngx_array_t cookies; 160 ngx_array_t cookies;
156 161
157 size_t host_name_len; 162 size_t host_name_len;
322 /* URI with "%" */ 327 /* URI with "%" */
323 unsigned quoted_uri:1; 328 unsigned quoted_uri:1;
324 329
325 /* URI with "+" */ 330 /* URI with "+" */
326 unsigned plus_in_uri:1; 331 unsigned plus_in_uri:1;
332
333 /* URI with "\0" or "%00" */
334 unsigned zero_in_uri:1;
327 335
328 unsigned uri_changed:1; 336 unsigned uri_changed:1;
329 unsigned uri_changes:4; 337 unsigned uri_changes:4;
330 338
331 unsigned low_case_exten:1; 339 unsigned low_case_exten:1;