File

net/connlisteners.lua @ 8188:8c524b7c9017

mod_disco: Advertise in stream-features after auth (probably what was meant in 200f1f6306a7) (fixes #957)
author Kim Alvefur <zash@zash.se>
date Thu, 27 Jul 2017 14:10:18 +0200
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
};