aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.h
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2005-02-16 13:40:36 +0000
committerIgor Sysoev <igor@sysoev.ru>2005-02-16 13:40:36 +0000
commit1ebfead9da0596e8e84231f7ea8ba25a650a4d1e (patch)
tree15e18d104477e04ffb5fcb31b3fb43f20dcfe996 /src/http/ngx_http_request.h
parent675cc5a855cec4acaae2937cb832c424e4d3bacf (diff)
downloadnginx-1ebfead9da0596e8e84231f7ea8ba25a650a4d1e.tar.gz
nginx-1ebfead9da0596e8e84231f7ea8ba25a650a4d1e.zip
nginx-0.1.19-RELEASE importrelease-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.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r--src/http/ngx_http_request.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h
index a4e3d0e5a..542a68994 100644
--- a/src/http/ngx_http_request.h
+++ b/src/http/ngx_http_request.h
@@ -152,6 +152,11 @@ typedef struct {
ngx_table_elt_t *x_url;
#endif
+#if (NGX_HTTP_HEADERS)
+ ngx_table_elt_t *accept;
+ ngx_table_elt_t *accept_language;
+#endif
+
ngx_array_t cookies;
size_t host_name_len;
@@ -325,6 +330,9 @@ struct ngx_http_request_s {
/* URI with "+" */
unsigned plus_in_uri:1;
+ /* URI with "\0" or "%00" */
+ unsigned zero_in_uri:1;
+
unsigned uri_changed:1;
unsigned uri_changes:4;