Made SGIs even more standards compliant (respect EOF command from LuCI)
[project/luci.git] / libs / sgi-webuci / luasrc / sgi / webuci.lua
index 3143fb1..e20dc5d 100644 (file)
@@ -41,6 +41,7 @@ function run(env, vars)
        local x = coroutine.create(luci.dispatcher.httpdispatch)
        local status = ""
        local headers = {}
+       local active = true
        
        while coroutine.status(x) ~= "dead" do
                local res, id, data1, data2 = coroutine.resume(x, r)
@@ -52,19 +53,22 @@ function run(env, vars)
                        break;
                end
                
-               if id == 1 then
-                       status = env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\r\n"
-               elseif id == 2 then
-                       headers[data1] = data2
-               elseif id == 3 then
-                       io.write(status)
-                       for k, v in pairs(headers) do
-                               io.write(k .. ": " .. v .. "\r\n")
+               if active then
+                       if id == 1 then
+                               status = env.SERVER_PROTOCOL .. " " .. tostring(data1) .. " " .. data2 .. "\r\n"
+                       elseif id == 2 then
+                               headers[data1] = data2
+                       elseif id == 3 then
+                               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)
+                       elseif id == 5 then
+                               active = false
                        end
-                       io.write("\r\n")
-               elseif id == 4 then
-                       io.write(data1)
                end
-               
        end
 end