comparison src/http/ngx_http_request.h @ 631:5d2b8078c1c2 release-0.3.37

nginx-0.3.37-RELEASE import *) Feature: the "limit_except" directive. *) Feature: the "if" directive supports the "!~", "!~*", "-f", and "!-f" operators. *) Feature: the ngx_http_perl_module supports the $r->request_body method. *) Bugfix: in the ngx_http_addition_filter_module.
author Igor Sysoev <igor@sysoev.ru>
date Fri, 07 Apr 2006 14:08:04 +0000
parents 65bf042c0b4f
children f971949ffb58
comparison
equal deleted inserted replaced
630:375dab4fd227 631:5d2b8078c1c2
17 17
18 #define NGX_HTTP_VERSION_9 9 18 #define NGX_HTTP_VERSION_9 9
19 #define NGX_HTTP_VERSION_10 1000 19 #define NGX_HTTP_VERSION_10 1000
20 #define NGX_HTTP_VERSION_11 1001 20 #define NGX_HTTP_VERSION_11 1001
21 21
22 #define NGX_HTTP_GET 1 22 #define NGX_HTTP_UNKNOWN 1
23 #define NGX_HTTP_HEAD 2 23 #define NGX_HTTP_GET 2
24 #define NGX_HTTP_POST 3 24 #define NGX_HTTP_HEAD 4
25 #define NGX_HTTP_POST 8
25 26
26 #define NGX_HTTP_CONNECTION_CLOSE 1 27 #define NGX_HTTP_CONNECTION_CLOSE 1
27 #define NGX_HTTP_CONNECTION_KEEP_ALIVE 2 28 #define NGX_HTTP_CONNECTION_KEEP_ALIVE 2
28 29
29 30