net.httpserver: Close connection on invalid HTTP status line

This commit is contained in:
Matthew Wild 2010-01-21 13:10:13 +00:00
parent 649aefc28e
commit 4c3707ec7b

View file

@ -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;