mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.http.parser: Silence warning about unused variable [luacheck]
This commit is contained in:
parent
83c028be30
commit
248ec3f834
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,8 @@ function httpstream.new(success_cb, error_cb, parser_type, options_cb)
|
|||
if buftable then buf, buftable = t_concat(buf), false; end
|
||||
local index = buf:find("\r\n\r\n", nil, true);
|
||||
if not index then return; end -- not enough data
|
||||
local method, path, httpversion, status_code, reason_phrase;
|
||||
-- FIXME was reason_phrase meant to be passed on somewhere?
|
||||
local method, path, httpversion, status_code, reason_phrase; -- luacheck: ignore reason_phrase
|
||||
local first_line;
|
||||
local headers = {};
|
||||
for line in buf:sub(1,index+1):gmatch("([^\r\n]+)\r\n") do -- parse request
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue