from trunk: improve evhttp_parse_query documentation

svn:r1161
This commit is contained in:
Niels Provos 2009-04-12 23:00:52 +00:00
parent c1bd938562
commit 1a51887386
2 changed files with 13 additions and 4 deletions

View File

@ -335,10 +335,20 @@ char *evhttp_decode_uri(const char *uri);
/**
* Helper function to parse out arguments in a query.
* The arguments are separated by key and value.
* URI should already be decoded.
*
* Parsing a uri like
*
* http://foo.com/?q=test&s=some+thing
*
* will result in two entries in the key value queue.
* The first entry is: key="q", value="test"
* The second entry is: key="s", value="some thing"
*
* @param uri the request URI
* @param headers the head of the evkeyval queue
*/
void evhttp_parse_query(const char *uri, struct evkeyvalq *);
void evhttp_parse_query(const char *uri, struct evkeyvalq *headers);
/**

1
http.c
View File

@ -2115,7 +2115,6 @@ evhttp_decode_uri(const char *uri)
/*
* Helper function to parse out arguments in a query.
* The arguments are separated by key and value.
* URI should already be decoded.
*/
void