diff options
author | Simon Rettberg | 2017-10-28 00:03:18 +0200 |
---|---|---|
committer | Simon Rettberg | 2017-10-28 00:03:18 +0200 |
commit | dc6ba44ea66c471305908a8053d7de56d705e499 (patch) | |
tree | e38ca2ac8c67523c0d3e5145e4f050831f16c0a6 /src/server/picohttpparser | |
parent | [SERVER] Use picohttpparser from h2o (diff) | |
download | dnbd3-dc6ba44ea66c471305908a8053d7de56d705e499.tar.gz dnbd3-dc6ba44ea66c471305908a8053d7de56d705e499.tar.xz dnbd3-dc6ba44ea66c471305908a8053d7de56d705e499.zip |
[SERVER] Add function to parse x-www-form-urlencoded strings
Use it to properly parse RPC queries. Will also come in handy
when parsing POST body for calls that actually trigger any
actions in the server (reload, alt-servers, ...)
Diffstat (limited to 'src/server/picohttpparser')
-rw-r--r-- | src/server/picohttpparser/picohttpparser.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server/picohttpparser/picohttpparser.h b/src/server/picohttpparser/picohttpparser.h index 582a1b8..b315795 100644 --- a/src/server/picohttpparser/picohttpparser.h +++ b/src/server/picohttpparser/picohttpparser.h @@ -44,7 +44,6 @@ struct string { size_t l; }; - /* contains name and value of a header (name == NULL if is a continuing line * of a multiline header */ struct phr_header { |