Did a lot of work on the HTTP server side

This commit is contained in:
2022-05-12 13:48:42 -04:00
parent 297ca3d56e
commit 9cf04a7741
6 changed files with 747 additions and 236 deletions

View File

@@ -225,7 +225,7 @@ public:
response.fail(503, util::ss("Service Unavailable: ", channel.error()));
} else {
htchan.parsed_bytes_ = channel.in()->fill();
response.parse(channel.in(), channel.closed());
response.parse(channel.in()->view(), channel.closed());
}
if (response.complete()) {
response.set_request_id(pair.first);