File

net/connlisteners.lua @ 8408:b751bee6a829

util.async: Fix thread check to work correctly in Lua 5.2 coroutine.running() now returns the main thread and a boolean true if called from the main thread, as opposed to nil in 5.1
author Kim Alvefur <zash@zash.se>
date Tue, 21 Nov 2017 21:48:43 +0100
parent 7359:a5a080c12c96
child 8555:4f0f5b49bb03
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 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
};