diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-03-04 06:33:48 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-03-04 06:33:48 +0000 |
commit | 6a644c694de6a7afc87d25395c2cf6fcc46c4e6f (patch) | |
tree | d1e6cb8b9cc688cbfcbc83c3e065930c36244715 /src/http/ngx_http.h | |
parent | ff148df8f694212e2cf13f0d43532949433831a2 (diff) | |
download | nginx-6a644c694de6a7afc87d25395c2cf6fcc46c4e6f.tar.gz nginx-6a644c694de6a7afc87d25395c2cf6fcc46c4e6f.zip |
nginx-0.0.1-2003-03-04-09:33:48 import
Diffstat (limited to 'src/http/ngx_http.h')
-rw-r--r-- | src/http/ngx_http.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 41bd932eb..cb62966a3 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -15,7 +15,9 @@ /* STUB */ #include <ngx_event_timer.h> +#define NGX_HTTP_VERSION_9 9 #define NGX_HTTP_VERSION_10 1000 +#define NGX_HTTP_VERSION_11 1001 #define NGX_HTTP_GET 1 #define NGX_HTTP_HEAD 2 @@ -31,6 +33,8 @@ #define NGX_HTTP_PARSE_TOO_LONG_URI 12 #define NGX_HTTP_PARSE_INVALID_HEAD 13 #define NGX_HTTP_PARSE_INVALID_HEADER 14 +#define NGX_HTTP_PARSE_TOO_LONG_HEADER 15 +#define NGX_HTTP_PARSE_NO_HOST_HEADER 16 #define NGX_HTTP_OK 200 @@ -270,11 +274,13 @@ extern int ngx_http_connection_pool_size; extern int ngx_http_request_pool_size; extern int ngx_http_client_header_timeout; extern int ngx_http_client_header_buffer_size; +extern int ngx_http_large_client_header; extern int ngx_http_discarded_buffer_size; extern int ngx_http_lingering_timeout; extern int ngx_http_lingering_time; +extern int ngx_http_url_in_error_log; extern ngx_array_t ngx_http_index_handlers; |