mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
stanza_router: Remove deprecation warning for core routing functions from global scope (deprecated in 0.9)
This commit is contained in:
parent
88cbaf2067
commit
49c6847837
1 changed files with 0 additions and 10 deletions
|
@ -19,16 +19,6 @@ local bare_sessions = _G.prosody.bare_sessions;
|
|||
|
||||
local core_post_stanza, core_process_stanza, core_route_stanza;
|
||||
|
||||
local function deprecated_warning(f)
|
||||
_G[f] = function(...)
|
||||
log("warn", "Using the global %s() is deprecated, use module:send() or prosody.%s(). %s", f, f, debug.traceback());
|
||||
return prosody[f](...);
|
||||
end
|
||||
end
|
||||
deprecated_warning"core_post_stanza";
|
||||
deprecated_warning"core_process_stanza";
|
||||
deprecated_warning"core_route_stanza";
|
||||
|
||||
local valid_stanzas = { message = true, presence = true, iq = true };
|
||||
local function handle_unhandled_stanza(host, origin, stanza) --luacheck: ignore 212/host
|
||||
local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns or "jabber:client", origin.type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue