mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
net.http.parser: Abort if no status line is received.
This commit is contained in:
parent
8e607ca796
commit
a6731c13d1
1 changed files with 1 additions and 0 deletions
|
@ -77,6 +77,7 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
|
|||
end
|
||||
end
|
||||
end
|
||||
if not first_line then error = true; return error_cb("invalid-status-line"); end
|
||||
len = tonumber(headers["content-length"]); -- TODO check for invalid len
|
||||
if client then
|
||||
-- FIXME handle '100 Continue' response (by skipping it)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue