push a load of changes before holidays
[m6w6/ext-http] / php_http_message_parser.h
index 7d84fc2ef1deef6cc82b5d3c42bd345b266d56ea..dcde640fb50b8fbf880f04d2c65ba8f874517630 100644 (file)
@@ -2,6 +2,10 @@
 #ifndef PHP_HTTP_MESSAGE_PARSER_H
 #define PHP_HTTP_MESSAGE_PARSER_H
 
+#include "php_http_header_parser.h"
+#include "php_http_encoding.h"
+#include "php_http_message.h"
+
 typedef enum php_http_message_parser_state {
        PHP_HTTP_MESSAGE_PARSER_STATE_FAILURE = FAILURE,
        PHP_HTTP_MESSAGE_PARSER_STATE_START = 0,
@@ -15,7 +19,9 @@ typedef enum php_http_message_parser_state {
        PHP_HTTP_MESSAGE_PARSER_STATE_DONE
 } php_http_message_parser_state_t;
 
-#define PHP_HTTP_MESSAGE_PARSER_CLEANUP 0x1
+#define PHP_HTTP_MESSAGE_PARSER_CLEANUP                        0x1
+#define PHP_HTTP_MESSAGE_PARSER_DUMB_BODIES            0x2
+#define PHP_HTTP_MESSAGE_PARSER_EMPTY_REDIRECTS        0x4
 
 typedef struct php_http_message_parser {
        php_http_header_parser_t header;