diff options
author | Waqas Hussain <waqas20@gmail.com> | 2011-01-05 06:34:23 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2011-01-05 06:34:23 +0500 |
commit | 6d0384f4cfc21965fb8267a40ef676699e8954b2 (patch) | |
tree | 9000fb011fcd5149af17dedbac9b6e7056fbece2 /net/httpserver.lua | |
parent | 24171721b5bdb6a110e530a3efbfac6148debf24 (diff) | |
download | prosody-6d0384f4cfc21965fb8267a40ef676699e8954b2.tar.gz prosody-6d0384f4cfc21965fb8267a40ef676699e8954b2.zip |
net.httpserver: Removed unused import and variables.
Diffstat (limited to 'net/httpserver.lua')
-rw-r--r-- | net/httpserver.lua | 2 |
1 files changed, 0 insertions, 2 deletions
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 |