Comparison

net/httpserver.lua @ 1112:e8a00a2ea910

Merge with 0.4
author Matthew Wild <mwild1@gmail.com>
date Mon, 04 May 2009 19:57:05 +0100
parent 1054:084d265b37cf
parent 1111:a1cf1d623695
child 1119:61a011ebe243
comparison
equal deleted inserted replaced
1103:b78b1524eb79 1112:e8a00a2ea910
6 local connlisteners_start = require "net.connlisteners".start; 6 local connlisteners_start = require "net.connlisteners".start;
7 local connlisteners_get = require "net.connlisteners".get; 7 local connlisteners_get = require "net.connlisteners".get;
8 local listener; 8 local listener;
9 9
10 local t_insert, t_concat = table.insert, table.concat; 10 local t_insert, t_concat = table.insert, table.concat;
11 local s_match, s_gmatch, s_char = string.match, string.gmatch; 11 local s_match, s_gmatch = string.match, string.gmatch;
12 local tonumber, tostring, pairs = tonumber, tostring, pairs; 12 local tonumber, tostring, pairs = tonumber, tostring, pairs;
13 13
14 local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = s_char(tonumber("0x"..k)); return t[k]; end });
15 local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end 14 local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%x", c:byte()); end)); end
16 15
17 local log = require "util.logger".init("httpserver"); 16 local log = require "util.logger".init("httpserver");
18 17
19 local http_servers = {}; 18 local http_servers = {};