Use enums instead of defines (for better debugging symbols)

event_stream
Ryan Dahl 15 years ago
parent cb91d5f00f
commit ce381895aa

@ -46,27 +46,31 @@ typedef int (*http_data_cb) (http_parser*, const char *at, size_t length);
typedef int (*http_cb) (http_parser*); typedef int (*http_cb) (http_parser*);
/* Request Methods */ /* Request Methods */
#define HTTP_COPY 0x0001 enum http_method
#define HTTP_DELETE 0x0002 { HTTP_COPY = 0x0001
#define HTTP_GET 0x0004 , HTTP_DELETE = 0x0002
#define HTTP_HEAD 0x0008 , HTTP_GET = 0x0004
#define HTTP_LOCK 0x0010 , HTTP_HEAD = 0x0008
#define HTTP_MKCOL 0x0020 , HTTP_LOCK = 0x0010
#define HTTP_MOVE 0x0040 , HTTP_MKCOL = 0x0020
#define HTTP_OPTIONS 0x0080 , HTTP_MOVE = 0x0040
#define HTTP_POST 0x0100 , HTTP_OPTIONS = 0x0080
#define HTTP_PROPFIND 0x0200 , HTTP_POST = 0x0100
#define HTTP_PROPPATCH 0x0400 , HTTP_PROPFIND = 0x0200
#define HTTP_PUT 0x0800 , HTTP_PROPPATCH = 0x0400
#define HTTP_TRACE 0x1000 , HTTP_PUT = 0x0800
#define HTTP_UNLOCK 0x2000 , HTTP_TRACE = 0x1000
, HTTP_UNLOCK = 0x2000
};
enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE }; enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE };
#define HTTP_VERSION_OTHER 0x00 enum http_version
#define HTTP_VERSION_11 0x01 { HTTP_VERSION_OTHER = 0x00
#define HTTP_VERSION_10 0x02 , HTTP_VERSION_11 = 0x01
#define HTTP_VERSION_09 0x04 , HTTP_VERSION_10 = 0x02
, HTTP_VERSION_09 = 0x04
};
struct http_parser { struct http_parser {
/** PRIVATE **/ /** PRIVATE **/
@ -93,8 +97,8 @@ struct http_parser {
/** READ-ONLY **/ /** READ-ONLY **/
unsigned short status_code; /* responses only */ unsigned short status_code; /* responses only */
unsigned short method; /* requests only */ enum http_method method; /* requests only */
short version; enum http_version version;
short keep_alive; short keep_alive;
ssize_t content_length; ssize_t content_length;

Loading…
Cancel
Save