mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Fix #203
This commit is contained in:
parent
64991a560a
commit
22615f9682
1 changed files with 2 additions and 2 deletions
|
@ -2451,8 +2451,9 @@ Server::process_request(Stream &strm, bool last_connection,
|
|||
|
||||
// Check if the request URI doesn't exceed the limit
|
||||
if (reader.size() > CPPHTTPLIB_REQUEST_URI_MAX_LENGTH) {
|
||||
Headers dummy;
|
||||
detail::read_headers(strm, dummy);
|
||||
res.status = 414;
|
||||
connection_close = true;
|
||||
return write_response(strm, last_connection, req, res);
|
||||
}
|
||||
|
||||
|
@ -2460,7 +2461,6 @@ Server::process_request(Stream &strm, bool last_connection,
|
|||
if (!parse_request_line(reader.ptr(), req) ||
|
||||
!detail::read_headers(strm, req.headers)) {
|
||||
res.status = 400;
|
||||
connection_close = true;
|
||||
return write_response(strm, last_connection, req, res);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue