diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
commit | 6253ca1b62c24bbac8c380d4ae64353b671ad7ef (patch) | |
tree | cccc0130b6fb065ff235750d23b817e890bd5e57 /src/http/ngx_http_request.h | |
parent | 187fcd82410e0f9022b0090a27b040eb1211c3f5 (diff) | |
download | nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.tar.gz nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.zip |
nginx-0.0.1-2003-05-27-16:18:54 import
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index c77fa288e..15898e868 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -49,6 +49,7 @@ #define NGX_HTTP_BAD_REQUEST 400 #define NGX_HTTP_FORBIDDEN 403 #define NGX_HTTP_NOT_FOUND 404 +#define NGX_HTTP_NOT_ALLOWED 405 #define NGX_HTTP_REQUEST_TIME_OUT 408 #define NGX_HTTP_REQUEST_URI_TOO_LARGE 414 @@ -154,10 +155,11 @@ struct ngx_http_request_s { ngx_http_request_t *main; - u_int in_addr; - - int port; - ngx_str_t port_name; + u_int in_addr; + int port; + ngx_str_t *port_name; /* ":80" */ + ngx_str_t *server_name; + ngx_array_t *virtual_names; int filter; |