From: Waqas Hussain Date: Wed, 5 Jan 2011 01:34:23 +0000 (+0500) Subject: net.httpserver: Removed unused import and variables. X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=16a715ba85d8c092f27d3d07715ddae742fe19ea;p=prosody.git net.httpserver: Removed unused import and variables. --- diff --git a/net/httpserver.lua b/net/httpserver.lua index 6fd9b65e..d401f47c 100644 --- a/net/httpserver.lua +++ b/net/httpserver.lua @@ -7,7 +7,6 @@ -- -local socket = require "socket" local server = require "net.server" local url_parse = require "socket.url".parse; local httpstream_new = require "util.httpstream".new; @@ -17,7 +16,6 @@ local connlisteners_get = require "net.connlisteners".get; local listener; local t_insert, t_concat = table.insert, table.concat; -local s_match, s_gmatch = string.match, string.gmatch; local tonumber, tostring, pairs, ipairs, type = tonumber, tostring, pairs, ipairs, type; local urlencode = function (s) return s and (s:gsub("%W", function (c) return ("%%%02x"):format(c:byte()); end)); end