diff options
author | Igor Sysoev <igor@sysoev.ru> | 2011-01-21 11:06:03 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2011-01-21 11:06:03 +0000 |
commit | e52b136dd7a6ad34b361b8b48eef7cbaa48282ca (patch) | |
tree | 271a2fac7e4bce8b8c8d220ba4815ae65cf2a938 /src/http/ngx_http_request.h | |
parent | 487d8fc7628cac7beb9240e6f1d9ebf53a1f30d7 (diff) | |
download | nginx-0.9.4.tar.gz |
Changes with nginx 0.9.4 21 Jan 2011v0.9.4
*) Feature: the "server_name" directive supports the $hostname variable.
*) Feature: 494 code for "Request Header Too Large" error.
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index a1d34456e..c20810ed5 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -95,7 +95,9 @@ /* The special code to close connection without any response */ #define NGX_HTTP_CLOSE 444 -#define NGX_HTTP_OWN_CODES 495 +#define NGX_HTTP_NGINX_CODES 494 + +#define NGX_HTTP_REQUEST_HEADER_TOO_LARGE 494 #define NGX_HTTPS_CERT_ERROR 495 #define NGX_HTTPS_NO_CERT 496 |