diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-18 05:13:29 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-18 05:13:29 +0000 |
commit | f21f55bb1e757f27cf9d2263469eb9ae6c63b91e (patch) | |
tree | 3ca7a7a8922903eed1b9522d7c2759043333ebcc /core | |
parent | 3ac3b3bc2dc01fea974472dbab1ba232b9ad776c (diff) | |
download | prosody-f21f55bb1e757f27cf9d2263469eb9ae6c63b91e.tar.gz prosody-f21f55bb1e757f27cf9d2263469eb9ae6c63b91e.zip |
Allow us to close client connections, with or without a stream error. Partially fixes #8, we still need the same for s2s (though it should be almost a straight copy of the code, I'm too tired atm)
Diffstat (limited to 'core')
-rw-r--r-- | core/sessionmanager.lua | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 0d65f6d6..33157567 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -96,13 +96,23 @@ function streamopened(session, attr) session.host = attr.to or error("Client failed to specify destination hostname"); session.version = tonumber(attr.version) or 0; session.streamid = m_random(1000000, 99999999); - print(session, session.host, "Client opened stream"); - send("<?xml version='1.0'?>"); + (session.log or session)("debug", "Client sent opening <stream:stream> to %s", session.host); + + + send("<?xml version='1.0'?>"); send(format("<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s' version='1.0'>", session.streamid, session.host)); + if not hosts[session.host] then + -- We don't serve this host... + session:disconnect{ condition = "host-unknown", text = "This server does not serve "..tostring(session.host)}; + return; + end + + local features = {}; modulemanager.fire_event("stream-features", session, features); + -- FIXME: Need to send() this all at once send("<stream:features>"); for _, feature in ipairs(features) do |