Changeset

3947:21391aa2d9bc

s2smanager: send_to_host(): Return false on failure, and true otherwise
author Matthew Wild <mwild1@gmail.com>
date Wed, 22 Dec 2010 20:38:40 +0000
parents 3946:14239141764f
children 3948:d0b8fa486458
files core/s2smanager.lua
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;