Monster whitespace commit (beware the whitespace monster).

This commit is contained in:
Waqas Hussain 2010-10-16 23:00:42 +05:00
parent 85b44a1dfd
commit b7e51a203d
42 changed files with 145 additions and 147 deletions

View file

@ -31,7 +31,7 @@ module "httpserver"
local default_handler;
local function expectbody(reqt)
return reqt.method == "POST";
return reqt.method == "POST";
end
local function send_response(request, response)
@ -212,8 +212,8 @@ function new_from_config(ports, handle_request, default_options)
ssl.options = "no_sslv2";
end
new{ port = port, interface = interface,
base = base, handler = handle_request,
new{ port = port, interface = interface,
base = base, handler = handle_request,
ssl = ssl, type = (ssl and "ssl") or "tcp" };
end
end