aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/http-parser/http_parser.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-03-11 15:18:49 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-03-11 15:18:49 +0000
commitfa0e3fbb9120b4b004aa497dbe5c5faa811b3a93 (patch)
tree3330e7adda5951ed283263b1ecd6c059cf8ee1aa /contrib/http-parser/http_parser.h
parent0d2af41920254a8014daa213299d871318500f33 (diff)
downloadrspamd-fa0e3fbb9120b4b004aa497dbe5c5faa811b3a93.tar.gz
rspamd-fa0e3fbb9120b4b004aa497dbe5c5faa811b3a93.zip
Try to fit options in 6 bits.
Diffstat (limited to 'contrib/http-parser/http_parser.h')
-rw-r--r--contrib/http-parser/http_parser.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/http-parser/http_parser.h b/contrib/http-parser/http_parser.h
index f6f29b057..bac517f51 100644
--- a/contrib/http-parser/http_parser.h
+++ b/contrib/http-parser/http_parser.h
@@ -129,11 +129,10 @@ enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };
enum flags
{ F_CHUNKED = 1 << 0
, F_CONNECTION_KEEP_ALIVE = 1 << 1
- , F_CONNECTION_CLOSE = 1 << 2
+ , F_SPAMC = 1 << 2
, F_TRAILING = 1 << 3
, F_UPGRADE = 1 << 4
, F_SKIPBODY = 1 << 5
- , F_SPAMC = 1 << 6
};