diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-06-16 15:32:11 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-16 15:32:11 +0000 |
commit | 2f65722941903cfb5b4819bbf32b61ed1d330749 (patch) | |
tree | 77fb2186a9afef9acdbc77e60e43a82fc4dae122 /src/http/ngx_http_request.h | |
parent | d09f7a1e9aa5816493e2fef93074383d95140c13 (diff) | |
download | nginx-2f65722941903cfb5b4819bbf32b61ed1d330749.tar.gz nginx-2f65722941903cfb5b4819bbf32b61ed1d330749.zip |
nginx-0.0.7-2004-06-16-19:32:11 import
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 3cf7307b2..52e110af7 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -135,6 +135,9 @@ typedef struct { ssize_t content_length_n; size_t connection_type; ssize_t keep_alive_n; + + unsigned msie; + unsigned msie4; } ngx_http_headers_in_t; @@ -201,7 +204,7 @@ struct ngx_http_cleanup_s { }; -typedef int (*ngx_http_handler_pt)(ngx_http_request_t *r); +typedef ngx_int_t (*ngx_http_handler_pt)(ngx_http_request_t *r); struct ngx_http_request_s { ngx_connection_t *connection; |