net/connlisteners.lua
author Kim Alvefur <zash@zash.se>
Wed, 28 Feb 2018 20:06:26 +0100
changeset 8558 4f0f5b49bb03
parent 7362 a5a080c12c96
child 8735 863f66cdd1df
permissions -rw-r--r--
vairious: Add annotation when an empty environment is set [luacheck]

-- COMPAT w/pre-0.9
local log = require "util.logger".init("net.connlisteners");
local traceback = debug.traceback;

local _ENV = nil;
-- luacheck: std none

local function fail()
	log("error", "Attempt to use legacy connlisteners API. For more info see https://prosody.im/doc/developers/network");
	log("error", "Legacy connlisteners API usage, %s", traceback("", 2));
end

return {
	register = fail;
	register = fail;
	get = fail;
	start = fail;
	-- epic fail
};