diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-03-23 06:01:52 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-23 06:01:52 +0000 |
commit | 89690bfe02703853c3e987d1e5c4d9878c4d28f0 (patch) | |
tree | c5d9a59cdd74b54ffa939dcf59886307f26c984c /src/http/ngx_http_request.h | |
parent | ae02c19867083c6ad3e51506109cb37bca1d36d1 (diff) | |
download | nginx-89690bfe02703853c3e987d1e5c4d9878c4d28f0.tar.gz nginx-89690bfe02703853c3e987d1e5c4d9878c4d28f0.zip |
nginx-0.0.3-2004-03-23-09:01:52 import
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 89cabdb9f..ad1afd9b5 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -30,7 +30,6 @@ #define NGX_HTTP_PARSE_TOO_LONG_HEADER 15 #define NGX_HTTP_PARSE_NO_HOST_HEADER 16 #define NGX_HTTP_PARSE_INVALID_CL_HEADER 17 -#define NGX_HTTP_PARSE_ENTITY_TOO_LARGE 18 #define NGX_HTTP_OK 200 @@ -87,7 +86,7 @@ typedef struct { typedef struct { - ngx_table_t *headers; /* it must be first field */ + ngx_table_t headers; /* it must be first field */ ngx_table_elt_t *host; ngx_table_elt_t *connection; @@ -137,7 +136,7 @@ typedef struct { typedef struct { - ngx_table_t *headers; /* it must be first field */ + ngx_table_t headers; /* it must be first field */ int status; ngx_str_t status_line; @@ -265,9 +264,7 @@ struct ngx_http_request_s { unsigned header_only:1; unsigned keepalive:1; unsigned lingering_close:1; -#if 0 unsigned closed:1; -#endif /* TODO: use the filter flags or the separate bits ???? */ u_int filter; |