view net/connlisteners.lua @ 8346:a567a646cf21

Makefile: Tell busted to use the configured Lua version (or C modules won't load)
author Kim Alvefur <zash@zash.se>
date Sun, 22 Oct 2017 20:41:11 +0200
parents a5a080c12c96
children 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
};