net.*: Remove use of module() function

This commit is contained in:
Kim Alvefur 2015-02-21 10:45:24 +01:00
parent 075278ff98
commit 9ed000c898
5 changed files with 44 additions and 34 deletions

View file

@ -2,14 +2,15 @@
local log = require "util.logger".init("net.httpserver");
local traceback = debug.traceback;
module "httpserver"
local _ENV = nil;
function fail()
log("error", "Attempt to use legacy HTTP API. For more info see http://prosody.im/doc/developers/legacy_http");
log("error", "Legacy HTTP API usage, %s", traceback("", 2));
end
new, new_from_config = fail, fail;
set_default_handler = fail;
return _M;
return {
new = fail;
new_from_config = fail;
set_default_handler = fail;
};