diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-05-10 22:59:01 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-05-10 22:59:01 +0100 |
commit | 75d9d9e997d8f88e483f3c79305fe0d79fb90c9a (patch) | |
tree | f52cc11c6af4453e4f5c9cc11b553627fd5f1a75 /plugins/mod_s2s | |
parent | bbd996911b313b8c1b94505400bba46c852e4832 (diff) | |
download | prosody-75d9d9e997d8f88e483f3c79305fe0d79fb90c9a.tar.gz prosody-75d9d9e997d8f88e483f3c79305fe0d79fb90c9a.zip |
mod_s2s, s2smanager, mod_dialback: Move addition of session.send() on s2sin to after they are authenticated (thus from mod_s2s to s2smanager). Update mod_dialback to fire route/remote directly, as session.send() is no longer available for s2sin_unauthed. Fixes #291.
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 3087ba24..61812a1e 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -253,11 +253,6 @@ function stream_callbacks.streamopened(session, attr) log("debug", "Sending stream features: %s", tostring(features)); send(features); end - - local host_session = hosts[to]; - session.send = function(stanza) - host_session.events.fire_event("route/remote", { from_host = to, to_host = from, stanza = stanza}) - end; elseif session.direction == "outgoing" then -- If we are just using the connection for verifying dialback keys, we won't try and auth it if not attr.id then error("stream response did not give us a streamid!!!"); end |