summaryrefslogtreecommitdiff
path: root/src/request.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-09-12 22:23:16 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-10-11 12:19:26 -0400
commit367f30a64506cd27acdd4458ce2b10edc44693b4 (patch)
tree23e9afbc32a00313c25c6600520edb5bfca1a99c /src/request.h
parent2e0676fd6dbab9da6b838f8f803bfc5dec11b346 (diff)
downloadlighttpd-git-367f30a64506cd27acdd4458ce2b10edc44693b4.tar.gz
[multiple] extend enum http_header_e list
Diffstat (limited to 'src/request.h')
-rw-r--r--src/request.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/request.h b/src/request.h
index fba62963..c98a7b47 100644
--- a/src/request.h
+++ b/src/request.h
@@ -142,8 +142,8 @@ struct request_st {
request_config conf;
/* request */
- uint32_t rqst_htags;/* bitfield of flagged headers present in request */
uint32_t rqst_header_len;
+ uint64_t rqst_htags;/* bitfield of flagged headers present in request */
array rqst_headers;
request_uri uri;
@@ -165,8 +165,8 @@ struct request_st {
/* response */
off_t content_length;
- uint32_t resp_htags; /*bitfield of flagged headers present in response*/
uint32_t resp_header_len;
+ uint64_t resp_htags; /*bitfield of flagged headers present in response*/
array resp_headers;
char resp_body_finished;
char resp_body_started;