File

net/connlisteners.lua @ 6097:538cdc3d8225

plugins/muc/muc.lib: Move (de)construct_stanza_id into `handle_iq_to_occupant` It is the only place they were used; and I left the old function names in as comments. One reason for doing this was to reduce accesses to _occupants; which may be in a database in future revisions
author daurnimator <quae@daurnimator.com>
date Fri, 21 Feb 2014 17:17:01 -0500
parent 4797:e239668aa6d2
child 6780:647adfd8f738
line wrap: on
line source

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

module "httpserver"

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

register, deregister = fail, fail;
get, start = fail, fail, epic_fail;

return _M;