mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.httpserver: Close connection on invalid HTTP status line
This commit is contained in:
parent
649aefc28e
commit
4c3707ec7b
1 changed files with 4 additions and 1 deletions
|
@ -175,7 +175,10 @@ local function request_reader(request, data, startpos)
|
|||
log("debug", "Reading request line...")
|
||||
local method, path, http, linelen = data:match("^(%S+) (%S+) HTTP/(%S+)\r\n()", startpos);
|
||||
if not method then
|
||||
return call_callback(request, "invalid-status-line");
|
||||
log("warn", "Invalid HTTP status line, telling callback then closing");
|
||||
local ret = call_callback(request, "invalid-status-line");
|
||||
request:destroy();
|
||||
return ret;
|
||||
end
|
||||
|
||||
request.method, request.path, request.httpversion = method, path, http;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue