Software /
code /
prosody
Changeset
4017:2cb5bb26b831
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 | 4016:0e927d4644c3 |
children | 4018:5061c8d41d89 |
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 @@ -518,7 +518,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