diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-02 19:07:17 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-02 19:07:17 +0100 |
commit | 4f8d550c72658177b47111d2f64dfe94900b6df4 (patch) | |
tree | bb8d31e9d028e3f75da5c098776eaacce07b3ca3 | |
parent | 3c4d560581795dbb6c89ec9f08fade3adcc91024 (diff) |
add support for sending HTTP/1.1 100 Continue
-rw-r--r-- | client.c | 8 | ||||
-rw-r--r-- | uhttpd.h | 1 |
2 files changed, 9 insertions, 0 deletions
@@ -141,6 +141,7 @@ static int client_parse_request(struct client *cl, char *data) if (!type || !path || !version) return CLIENT_STATE_DONE; + memset(&cl->request, 0, sizeof(cl->request)); req->url = path; req->method = find_idx(http_methods, ARRAY_SIZE(http_methods), type); if (req->method < 0) @@ -191,6 +192,9 @@ static void client_header_complete(struct client *cl) if (!rfc1918_filter_check(cl)) return; + if (cl->request.expect_cont) + ustream_printf(cl->us, "HTTP/1.1 100 Continue\r\n\r\n"); + uh_handle_request(cl); } @@ -216,6 +220,10 @@ static void client_parse_header(struct client *cl, char *data) if (isupper(*name)) *name = tolower(*name); + if (!strcasecmp(data, "Expect") && + !strcasecmp(val, "100-continue")) + cl->request.expect_cont = true; + blobmsg_add_string(&cl->hdr, data, val); cl->state = CLIENT_STATE_HEADER; @@ -78,6 +78,7 @@ enum http_version { struct http_request { enum http_method method; enum http_version version; + bool expect_cont; int redirect_status; const char *url; const struct auth_realm *realm; |