diff options
author | Florian Zeitz <florob@babelmonkeys.de> | 2012-02-24 15:15:43 +0000 |
---|---|---|
committer | Florian Zeitz <florob@babelmonkeys.de> | 2012-02-24 15:15:43 +0000 |
commit | 0c2a6fec148390fc52308086e099f253b762310f (patch) | |
tree | ad8c5432105059c2f0926e77b1a26aa352766860 | |
parent | 0699ab44aaa99853e7efb116ae041e83c00fdaba (diff) | |
download | prosody-0c2a6fec148390fc52308086e099f253b762310f.tar.gz prosody-0c2a6fec148390fc52308086e099f253b762310f.zip |
s2smanager: remove send_to_host.
-rw-r--r-- | core/s2smanager.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index e61aaccb..6877ee18 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -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); |