mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.httpserver: Add compatibility stub
This commit is contained in:
parent
449813a79e
commit
30957d900d
1 changed files with 15 additions and 0 deletions
15
net/httpserver.lua
Normal file
15
net/httpserver.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
-- COMPAT w/pre-0.9
|
||||
local log = require "util.logger".init("net.httpserver");
|
||||
local traceback = debug.traceback;
|
||||
|
||||
module "httpserver"
|
||||
|
||||
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;
|
Loading…
Add table
Add a link
Reference in a new issue