summaryrefslogtreecommitdiffhomepage
path: root/libs/sgi-webuci
diff options
context:
space:
mode:
Diffstat (limited to 'libs/sgi-webuci')
-rw-r--r--libs/sgi-webuci/luasrc/sgi/webuci.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/libs/sgi-webuci/luasrc/sgi/webuci.lua b/libs/sgi-webuci/luasrc/sgi/webuci.lua
index cf8cbcce2..b9033f370 100644
--- a/libs/sgi-webuci/luasrc/sgi/webuci.lua
+++ b/libs/sgi-webuci/luasrc/sgi/webuci.lua
@@ -39,6 +39,8 @@ function run(env, vars)
r.message.params = vars
local x = coroutine.create(luci.dispatcher.httpdispatch)
+ local status = ""
+ local headers = {}
while coroutine.status(x) ~= "dead" do
local res, id, data1, data2 = coroutine.resume(x, r)
@@ -51,11 +53,15 @@ function run(env, vars)
end
if id == 1 then
- io.write(env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\n")
+ status = env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\r\n"
elseif id == 2 then
- io.write(data1 .. ": " .. data2 .. "\n")
+ headers[data1] = data2
elseif id == 3 then
- io.write("\n")
+ io.write(status)
+ for k, v in pairs(headers) do
+ io.write(k .. ": " .. v .. "\r\n")
+ end
+ io.write("\r\n")
elseif id == 4 then
io.write(data1)
end