summaryrefslogtreecommitdiffhomepage
path: root/libs/sgi-cgi/luasrc
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-07-23 18:52:12 +0000
committerSteven Barth <steven@midlink.org>2008-07-23 18:52:12 +0000
commit22451345d859bdae5a8cc18464459e3a18406cb1 (patch)
tree6f4c0ca6e185f4501067a9cdb01d463ef5f88d3e /libs/sgi-cgi/luasrc
parent59bef00fc3a9019733103661e67268f55c93ae17 (diff)
Made SGIs even more standards compliant (respect EOF command from LuCI)
Diffstat (limited to 'libs/sgi-cgi/luasrc')
-rw-r--r--libs/sgi-cgi/luasrc/sgi/cgi.lua24
1 files changed, 14 insertions, 10 deletions
diff --git a/libs/sgi-cgi/luasrc/sgi/cgi.lua b/libs/sgi-cgi/luasrc/sgi/cgi.lua
index 0d5ba6ff1..d36d43fb5 100644
--- a/libs/sgi-cgi/luasrc/sgi/cgi.lua
+++ b/libs/sgi-cgi/luasrc/sgi/cgi.lua
@@ -38,6 +38,7 @@ function run()
local x = coroutine.create(luci.dispatcher.httpdispatch)
local hcache = ""
+ local active = true
while coroutine.status(x) ~= "dead" do
local res, id, data1, data2 = coroutine.resume(x, r)
@@ -49,16 +50,19 @@ function run()
break;
end
- if id == 1 then
- io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n")
- elseif id == 2 then
- hcache = hcache .. data1 .. ": " .. data2 .. "\r\n"
- elseif id == 3 then
- io.write(hcache)
- io.write("\r\n")
- elseif id == 4 then
- io.write(data1)
+ if active then
+ if id == 1 then
+ io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n")
+ elseif id == 2 then
+ hcache = hcache .. data1 .. ": " .. data2 .. "\r\n"
+ elseif id == 3 then
+ io.write(hcache)
+ io.write("\r\n")
+ elseif id == 4 then
+ io.write(data1)
+ elseif id == 5 then
+ active = false
+ end
end
-
end
end