mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
s2smanager: send_to_host(): Return false on failure, and true otherwise
This commit is contained in:
parent
f050d463d4
commit
abb088f7c4
1 changed files with 3 additions and 0 deletions
|
@ -105,6 +105,7 @@ function send_to_host(from_host, to_host, data)
|
|||
log("error", "Trying to send a stanza to ourselves??")
|
||||
log("error", "Traceback: %s", get_traceback());
|
||||
log("error", "Stanza: %s", tostring(data));
|
||||
return false;
|
||||
else
|
||||
(host.log or log)("debug", "going to send stanza to "..to_host.." from "..from_host);
|
||||
-- FIXME
|
||||
|
@ -125,8 +126,10 @@ function send_to_host(from_host, to_host, data)
|
|||
if (not host_session.connecting) and (not host_session.conn) then
|
||||
log("warn", "Connection to %s failed already, destroying session...", to_host);
|
||||
destroy_session(host_session);
|
||||
return false;
|
||||
end
|
||||
end
|
||||
return true;
|
||||
end
|
||||
|
||||
local open_sessions = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue