update http proxy example

This commit is contained in:
XieHan
2022-03-03 20:33:04 +08:00
parent 303b0ab432
commit a6837fdfd6

View File

@@ -68,8 +68,8 @@ void http_callback(WFHttpTask *task)
context->proxy_task->set_callback(reply_callback);
/* Copy the remote webserver's response, to proxy response. */
if (resp->get_parsed_body(&body, &len))
resp->append_output_body_nocopy(body, len);
resp->get_parsed_body(&body, &len);
resp->append_output_body_nocopy(body, len);
*proxy_resp = std::move(*resp);
if (!context->is_keep_alive)
proxy_resp->set_header_pair("Connection", "close");