diff options
Diffstat (limited to 'vendor/http_parser/http_parser.h')
-rw-r--r-- | vendor/http_parser/http_parser.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vendor/http_parser/http_parser.h b/vendor/http_parser/http_parser.h index e894d7ce9..880ed278e 100644 --- a/vendor/http_parser/http_parser.h +++ b/vendor/http_parser/http_parser.h @@ -26,8 +26,8 @@ extern "C" { /* Also update SONAME in the Makefile whenever you change these. */ #define HTTP_PARSER_VERSION_MAJOR 2 -#define HTTP_PARSER_VERSION_MINOR 8 -#define HTTP_PARSER_VERSION_PATCH 1 +#define HTTP_PARSER_VERSION_MINOR 9 +#define HTTP_PARSER_VERSION_PATCH 0 #include <stddef.h> #if defined(_WIN32) && !defined(__MINGW32__) && \ @@ -430,6 +430,9 @@ void http_parser_pause(http_parser *parser, int paused); /* Checks if this is the final chunk of the body. */ int http_body_is_final(const http_parser *parser); +/* Change the maximum header size provided at compile time. */ +void http_parser_set_max_header_size(uint32_t size); + #ifdef __cplusplus } #endif |