OSDN Git Service

Generated Makefile.am.
[ultramonkey-l7/sslproxy.git] / include / http_request_enum.h
1 /*
2  * @file  http_request_enum.h
3  * @brief HTTP Request Message Enum Header
4  *
5  * Copyright (C) 2009  NTT COMWARE Corporation.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA
21  *
22  **********************************************************************/
23
24 #ifndef __HTTP_REQUEST_ENUM_H__
25 #define __HTTP_REQUEST_ENUM_H__
26
27 enum HTTP_REQUEST_POSITION
28 {
29     REQUEST_TOP = 0,
30     REQUEST_METHOD,
31     REQUEST_METHOD_SP,
32     REQUEST_REQUEST_URI,
33     REQUEST_REQUEST_URI_SP,
34     REQUEST_HTTP_VERSION_H,
35     REQUEST_HTTP_VERSION_T1,
36     REQUEST_HTTP_VERSION_T2,
37     REQUEST_HTTP_VERSION_P,
38     REQUEST_HTTP_VERSION_SLASH,
39     REQUEST_HTTP_VERSION_MAJOR,
40     REQUEST_HTTP_VERSION_DOT,
41     REQUEST_HTTP_VERSION_MINOR,
42     REQUEST_CR,
43     REQUEST_LF,
44 };
45
46 #endif //__HTTP_REQUEST_ENUM_H__