mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-24 12:20:41 +00:00
use table for multi header key
This commit is contained in:
@@ -2,6 +2,7 @@ local internal = require "http.internal"
|
||||
|
||||
local table = table
|
||||
local string = string
|
||||
local type = type
|
||||
|
||||
local httpd = {}
|
||||
|
||||
@@ -113,7 +114,13 @@ local function writeall(writefunc, statuscode, bodyfunc, header)
|
||||
writefunc(statusline)
|
||||
if header then
|
||||
for k,v in pairs(header) do
|
||||
writefunc(string.format("%s: %s\r\n", k,v))
|
||||
if type(v) == "table" then
|
||||
for _,v in ipairs(v) do
|
||||
writefunc(string.format("%s: %s\r\n", k,v))
|
||||
end
|
||||
else
|
||||
writefunc(string.format("%s: %s\r\n", k,v))
|
||||
end
|
||||
end
|
||||
end
|
||||
local t = type(bodyfunc)
|
||||
|
||||
Reference in New Issue
Block a user