# HG changeset patch # User Matthew Wild # Date 1335619668 -3600 # Node ID 31a40da59308b5d8c200f2a536d73da4d9649faf # Parent 1b17af95ce6f7e200d0c3ee1a623f2c012965d1f net.http.server: Remove unused imports and variables (fixes traceback due to removed net.httpserver) diff -r 1b17af95ce6f -r 31a40da59308 net/http/server.lua --- a/net/http/server.lua Sat Apr 28 14:13:51 2012 +0100 +++ b/net/http/server.lua Sat Apr 28 14:27:48 2012 +0100 @@ -12,8 +12,6 @@ local debug = debug; local tostring = tostring; local codes = require "net.http.codes"; -local _G = _G; -local legacy_httpserver = require "net.httpserver"; local _M = {}; @@ -90,7 +88,7 @@ local secure = conn:ssl() and true or nil; local pending = {}; local waiting = false; - local function process_next(last_response) + local function process_next() --if waiting then log("debug", "can't process_next, waiting"); return; end if sessions[conn] and #pending > 0 then local request = t_remove(pending); @@ -198,7 +196,7 @@ local result = events.fire_event(event, payload); if result ~= nil then if result ~= true then - local code, body = 200, ""; + local body = ""; local result_type = type(result); if result_type == "number" then response.status_code = result;