Software /
code /
prosody
File
net/connlisteners.lua @ 7239:c9af793b2d8f
util.xml: Correct stanza.namespaces table construction when duplicate prefix names are encountered in the element tree.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sat, 05 Mar 2016 17:51:35 -0500 |
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 };