diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-01 21:07:14 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-01 21:07:14 +0000 |
commit | 4851756ca45d3e9dc2d8add552528db9423332da (patch) | |
tree | 1e33e3e6bc432810ab76b987925bb7e4dca097c6 /core/s2smanager.lua | |
parent | 7a2fc45f65a14933f2ab8e83d6ae9487b59e6a79 (diff) | |
download | prosody-4851756ca45d3e9dc2d8add552528db9423332da.tar.gz prosody-4851756ca45d3e9dc2d8add552528db9423332da.zip |
Fix s2s once and for all
- Moved dialback to the new mod_dialback (mostly).
- Modules can now supply a list of origins to handle to add_handler
- Modules can now handle and process any stanza, overriding the core
- Modules handle non-jabber:client/jabber:server xmlns'd stanzas
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r-- | core/s2smanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index e7436a72..b2e498bd 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -188,7 +188,6 @@ function mark_connected(session) if session.direction == "outgoing" then - hosts[to] = session; if sendq then session.log("debug", "sending queued stanzas across new outgoing connection to "..session.to_host); for i, data in ipairs(sendq) do |