core/s2smanager.lua
changeset 4016 0e927d4644c3
parent 3650 2b80450bd7ae
child 4017 2cb5bb26b831
--- a/core/s2smanager.lua	Wed Dec 22 16:46:19 2010 +0000
+++ b/core/s2smanager.lua	Wed Dec 22 20:38:40 2010 +0000
@@ -105,6 +105,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
@@ -125,8 +126,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;