File

net/connlisteners.lua @ 6984:0f633160464c

mod_compression: Remove FIXMEs, mod_c2s and mod_s2s checks if TLS compression is used and sets a flag since 969e0a054795
author Kim Alvefur <zash@zash.se>
date Thu, 10 Dec 2015 15:16:49 +0100
parent 6780:647adfd8f738
child 7359:a5a080c12c96
line wrap: on
line source

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

local _ENV = nil;

local function fail()
	log("error", "Attempt to use legacy connlisteners API. For more info see http://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
};