summaryrefslogtreecommitdiff
path: root/src/request.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-09-13 01:00:02 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-10-11 12:19:26 -0400
commit3fbb5773e91d3b6c5d3a406b5b84be35f2930ac6 (patch)
tree4c37b82750192bfdb3837bfca239059ba6b6c288 /src/request.h
parent367f30a64506cd27acdd4458ce2b10edc44693b4 (diff)
downloadlighttpd-git-3fbb5773e91d3b6c5d3a406b5b84be35f2930ac6.tar.gz
[core] http_header_e <=> lshpack_static_hdr_idx
map enum http_header_e to enum lshpack_static_hdr_idx map enum lshpack_static_hdr_idx to enum http_header_e
Diffstat (limited to 'src/request.h')
-rw-r--r--src/request.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/request.h b/src/request.h
index c98a7b47..c3343786 100644
--- a/src/request.h
+++ b/src/request.h
@@ -199,9 +199,10 @@ typedef struct http_header_parse_ctx {
uint32_t klen;
uint32_t vlen;
uint32_t hlen;
- int pseudo;
- int scheme;
- int trailers;
+ uint8_t pseudo;
+ uint8_t scheme;
+ uint8_t trailers;
+ uint8_t id;
uint32_t max_request_field_size;
unsigned int http_parseopts;
} http_header_parse_ctx;