comparison src/http/ngx_http_request.h @ 38:2879cd3a40cb NGINX_0_1_19

nginx 0.1.19 *) 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 <http://sysoev.ru>
date Wed, 16 Feb 2005 00:00:00 +0300
parents aab2ea7c0458
children 9f3205d496a0
comparison
equal deleted inserted replaced
37:3376a7dea5d6 38:2879cd3a40cb
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;