summaryrefslogtreecommitdiff
path: root/src/burl.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-02-21 23:55:59 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2019-03-07 00:32:17 -0500
commit8441c9e8e8ee02aa72e75d11a0094540b015f596 (patch)
treec6a75f6f9dc1114bbe453172f8ba7adcce56baf9 /src/burl.h
parent8167497899f4731abf47a20cffcbe29c166c6871 (diff)
downloadlighttpd-git-8441c9e8e8ee02aa72e75d11a0094540b015f596.tar.gz
[core] config option to allow GET w/ request body
server.http-parseopts = ( "method-get-body" = "enable" )
Diffstat (limited to 'src/burl.h')
-rw-r--r--src/burl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/burl.h b/src/burl.h
index 4eb8f3ea..f4e5f04b 100644
--- a/src/burl.h
+++ b/src/burl.h
@@ -26,6 +26,7 @@ enum burl_opts_e {
,HTTP_PARSEOPT_URL_NORMALIZE_PATH_DOTSEG_REMOVE =0x400/* "." ".." "//" */
,HTTP_PARSEOPT_URL_NORMALIZE_PATH_DOTSEG_REJECT =0x800
,HTTP_PARSEOPT_URL_NORMALIZE_QUERY_20_PLUS =0x1000
+ ,HTTP_PARSEOPT_METHOD_GET_BODY =0x8000
};
int burl_normalize (buffer *b, buffer *t, int flags);