core/s2smanager.lua

changeset 3947
21391aa2d9bc
parent 3733
26571a99f6e6
child 3948
d0b8fa486458
--- a/core/s2smanager.lua	Wed Dec 22 17:23:55 2010 +0100
+++ b/core/s2smanager.lua	Wed Dec 22 20:38:40 2010 +0000
@@ -106,6 +106,7 @@
 			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
@@ -126,8 +127,10 @@
 		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;

mercurial