aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-12-17 21:33:35 +0000
committerMatthew Wild <mwild1@gmail.com>2009-12-17 21:33:35 +0000
commit6aaad6c768a9e5787facd78984d6a906b17af4f1 (patch)
tree583f391de81d4ddc7aab6647e9fd29c21e1eb93c /core/s2smanager.lua
parentf81d945625dd9afada0438b6177c5570bdf1dd45 (diff)
downloadprosody-6aaad6c768a9e5787facd78984d6a906b17af4f1.tar.gz
prosody-6aaad6c768a9e5787facd78984d6a906b17af4f1.zip
Backed out changeset 78c5cb163ea9, to fix another way. Haven't done this for a while :)
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 1d1e4696..2ea645fb 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -366,7 +366,6 @@ function streamopened(session, attr)
send("<?xml version='1.0'?>");
send(stanza("stream:stream", { xmlns='jabber:server', ["xmlns:db"]='jabber:server:dialback',
["xmlns:stream"]='http://etherx.jabber.org/streams', id=session.streamid, from=session.to_host, version=(session.version > 0 and "1.0" or nil) }):top_tag());
- session.notopen = nil;
if session.to_host and not hosts[session.to_host] then
-- Attempting to connect to a host we don't serve
session:close({ condition = "host-unknown"; text = "This host does not serve "..session.to_host });
@@ -413,6 +412,8 @@ function streamopened(session, attr)
end
end
end
+
+ session.notopen = nil;
end
function streamclosed(session)