Treat the ?query string and body the same as httpd.js does. Now I can auth.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4691 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-12-23 19:52:59 +00:00
parent 38ab32dad9
commit 196ab66e14
3 changed files with 23 additions and 0 deletions

View File

@ -18,6 +18,9 @@ typedef struct _tf_http_request_t
tf_http_connection_t* connection;
const char* method;
const char* path;
const char* query;
void* body;
size_t content_length;
struct phr_header* headers;
int headers_count;
void* user_data;