Changeset

3948:d0b8fa486458

s2smanager: session.send(): Return the result of send_to_host() (and incidentally make this a tail call \o/)
author Matthew Wild <mwild1@gmail.com>
date Wed, 22 Dec 2010 20:39:30 +0000
parents 3947:21391aa2d9bc
children 3949:fc4ff6db1e57
files core/s2smanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core/s2smanager.lua	Wed Dec 22 20:38:40 2010 +0000
+++ b/core/s2smanager.lua	Wed Dec 22 20:39:30 2010 +0000
@@ -555,7 +555,7 @@
 	session.log("info", session.direction.." s2s connection "..from.."->"..to.." complete");
 	
 	local send_to_host = send_to_host;
-	function session.send(data) send_to_host(to, from, data); end
+	function session.send(data) return send_to_host(to, from, data); end
 	
 	local event_data = { session = session };
 	if session.type == "s2sout" then