mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Fix for detecting when we are routing a stanza to ourself (I'm sure this has something to do with you, waqas...)
This commit is contained in:
parent
9acd51fbef
commit
1b422e8f1d
1 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@ local sessions = sessions;
|
|||
local socket = require "socket";
|
||||
local format = string.format;
|
||||
local t_insert = table.insert;
|
||||
local get_traceback = debug.traceback;
|
||||
local tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber
|
||||
= tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber;
|
||||
|
||||
|
@ -44,6 +45,9 @@ function send_to_host(from_host, to_host, data)
|
|||
-- Queue stanza until we are able to send it
|
||||
if host.sendq then t_insert(host.sendq, data);
|
||||
else host.sendq = { data }; end
|
||||
elseif host.type == "local" or host.type == "component" then
|
||||
log("error", "Trying to send a stanza to ourselves??")
|
||||
log("error", "Traceback: "..get_traceback());
|
||||
else
|
||||
(host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
|
||||
-- FIXME
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue