s2smanager: remove send_to_host.

This commit is contained in:
Florian Zeitz 2012-02-24 15:15:43 +00:00
parent 4c9c8363bc
commit 8f06587c50

View file

@ -114,10 +114,7 @@ function mark_connected(session)
local from, to = session.from_host, session.to_host;
session.log("info", session.direction.." s2s connection "..from.."->"..to.." complete");
local send_to_host = send_to_host;
function session.send(data) return send_to_host(to, from, data); end
local event_data = { session = session };
if session.type == "s2sout" then
prosody.events.fire_event("s2sout-established", event_data);