mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.httpserver: Join multiple headers with the same name as per RFC (thanks darkhippo)
This commit is contained in:
parent
be6148a1eb
commit
fc62af2024
1 changed files with 6 additions and 1 deletions
|
@ -152,7 +152,12 @@ local function request_reader(request, data, startpos)
|
|||
startpos = (startpos or 1) + #line + 2;
|
||||
local k, v = line:match("(%S+): (.+)");
|
||||
if k and v then
|
||||
headers[k:lower()] = v;
|
||||
k = k:lower();
|
||||
if headers[k] then
|
||||
headers[k] = headers[k]..", "..v;
|
||||
else
|
||||
headers[k] = v;
|
||||
end
|
||||
--log("debug", "Header: '"..k:lower().."' = '"..v.."'");
|
||||
elseif #line == 0 then
|
||||
headers_complete = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue