comparison src/http/ngx_http_request.h @ 141:656d468f4ead

nginx-0.0.1-2003-10-08-19:32:54 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 08 Oct 2003 15:32:54 +0000
parents da00cde00e8a
children 5526213be452
comparison
equal deleted inserted replaced
140:e32405df0e77 141:656d468f4ead
1 #ifndef _NGX_HTTP_REQUEST_H_INCLUDED_ 1 #ifndef _NGX_HTTP_REQUEST_H_INCLUDED_
2 #define _NGX_HTTP_REQUEST_H_INCLUDED_ 2 #define _NGX_HTTP_REQUEST_H_INCLUDED_
3
4
5 #if 0
6 #include <ngx_config.h>
7
8 #include <ngx_types.h>
9 #include <ngx_string.h>
10 #include <ngx_table.h>
11 #include <ngx_hunk.h>
12 #include <ngx_files.h>
13 #include <ngx_connection.h>
14 #include <ngx_conf_file.h>
15
16 #endif
17 3
18 4
19 #define NGX_HTTP_VERSION_9 9 5 #define NGX_HTTP_VERSION_9 9
20 #define NGX_HTTP_VERSION_10 1000 6 #define NGX_HTTP_VERSION_10 1000
21 #define NGX_HTTP_VERSION_11 1001 7 #define NGX_HTTP_VERSION_11 1001
24 #define NGX_HTTP_HEAD 2 10 #define NGX_HTTP_HEAD 2
25 #define NGX_HTTP_POST 3 11 #define NGX_HTTP_POST 3
26 12
27 #define NGX_HTTP_CONN_CLOSE 0 13 #define NGX_HTTP_CONN_CLOSE 0
28 #define NGX_HTTP_CONN_KEEP_ALIVE 1 14 #define NGX_HTTP_CONN_KEEP_ALIVE 1
15
16
17 #define NGX_NONE 1
29 18
30 19
31 #define NGX_HTTP_PARSE_HEADER_DONE 1 20 #define NGX_HTTP_PARSE_HEADER_DONE 1
32 #define NGX_HTTP_PARSE_INVALID_METHOD 10 21 #define NGX_HTTP_PARSE_INVALID_METHOD 10
33 #define NGX_HTTP_PARSE_INVALID_REQUEST 11 22 #define NGX_HTTP_PARSE_INVALID_REQUEST 11