summaryrefslogtreecommitdiff
path: root/src/request.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-08-09 15:02:58 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-10-03 09:05:38 -0400
commit6971c6c81152b34adcc0883e339ade3e7560d96e (patch)
treea8c7cdd99ea0d53b333f6598b578a304e5aec176 /src/request.h
parentdb7b51a4f66a5ced04837852571782949c55854b (diff)
downloadlighttpd-git-6971c6c81152b34adcc0883e339ade3e7560d96e.tar.gz
[core] move http_request_headers_process()
move http_request_headers_process() to request.[ch]
Diffstat (limited to 'src/request.h')
-rw-r--r--src/request.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/request.h b/src/request.h
index adaf7570..f512d1f3 100644
--- a/src/request.h
+++ b/src/request.h
@@ -188,7 +188,7 @@ struct request_st {
};
-int http_request_parse(request_st * restrict r, char * restrict hdrs, const unsigned short * restrict hloffsets, int scheme_port);
+void http_request_headers_process (request_st * restrict r, char * restrict hdrs, const unsigned short * restrict hoff, int scheme_port);
int http_request_parse_target(request_st *r, int scheme_port);
int http_request_host_normalize(buffer *b, int scheme_port);
int http_request_host_policy(buffer *b, unsigned int http_parseopts, int scheme_port);