aboutsummaryrefslogtreecommitdiff
path: root/picohttp.c
diff options
context:
space:
mode:
authorWolfgang Draxinger <Wolfgang.Draxinger@draxit.de>2013-06-18 22:14:52 +0200
committerWolfgang Draxinger <Wolfgang.Draxinger@draxit.de>2013-06-18 22:14:52 +0200
commite7b86baeec0ef6f946e2b60a68876eb6f3cdc32e (patch)
tree21410c5cfc13348f3c90eec17c9f4f388af4ef28 /picohttp.c
parentfc9f3c0bde26bc882bdfe1ec0435ade8b60172f4 (diff)
downloadlitheweb-e7b86baeec0ef6f946e2b60a68876eb6f3cdc32e.tar.gz
litheweb-e7b86baeec0ef6f946e2b60a68876eb6f3cdc32e.tar.bz2
...
Diffstat (limited to 'picohttp.c')
-rw-r--r--picohttp.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/picohttp.c b/picohttp.c
index 43d4652..eb5decc 100644
--- a/picohttp.c
+++ b/picohttp.c
@@ -196,6 +196,13 @@ static int16_t picohttpIoGetPercentCh(
return ch;
}
+uint16_t picohttpGetch(struct picohttpRequest * const req)
+{
+ /* read HTTP query body, skipping over Chunked Transfer Boundaries
+ * if Chunked Transfer Encoding is used */
+
+}
+
/* TODO:
* It is possible to do in-place pattern matching on the route definition
* array, without first reading in the URL and then processing it here.