diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-03-12 16:57:08 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-12 16:57:08 +0000 |
commit | 67f88e9cc678d31b5995518922d3fcb63a129465 (patch) | |
tree | 370c489b498feddaf17f12b125f6f75d69cdb9f2 /src/http/ngx_http_request.h | |
parent | a893eab667078a8ad9f473296663b36e6ade111a (diff) | |
download | nginx-67f88e9cc678d31b5995518922d3fcb63a129465.tar.gz nginx-67f88e9cc678d31b5995518922d3fcb63a129465.zip |
nginx-0.0.2-2004-03-12-19:57:08 import
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 657a098cf..770221210 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -93,15 +93,22 @@ typedef struct { ngx_table_elt_t *if_modified_since; ngx_table_elt_t *user_agent; ngx_table_elt_t *referer; - ngx_table_elt_t *content_length; - ngx_table_elt_t *accept_encoding; + ngx_table_elt_t *range; +#if (NGX_HTTP_GZIP) + ngx_table_elt_t *accept_encoding; +#endif + ngx_table_elt_t *authorization; ngx_table_elt_t *keep_alive; +#if (NGX_HTTP_PROXY) + ngx_table_elt_t *x_forwarded_for; +#endif + size_t host_name_len; ssize_t content_length_n; size_t connection_type; |