diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-08-24 22:48:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-08-24 22:48:27 +0100 |
commit | 1a138d2e57818f585c9244a4230d7387c50777ea (patch) | |
tree | 748c1714574fb3eb468c27f083b46f7c935cc10d /core/xmlhandlers.lua | |
parent | 25f82f43ad92f190e2373f0e61524bee826617b2 (diff) | |
download | prosody-1a138d2e57818f585c9244a4230d7387c50777ea.tar.gz prosody-1a138d2e57818f585c9244a4230d7387c50777ea.zip |
- Remove some debugging code
- Don't allow stanzas to be sent before successful auth (needs further review)
- Make init_xmlhandlers local
- Fix indentation in main.lua
- Fix disconnect logic (it broke if client disconnected before auth, etc.)
Diffstat (limited to 'core/xmlhandlers.lua')
-rw-r--r-- | core/xmlhandlers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/xmlhandlers.lua b/core/xmlhandlers.lua index 4d536ce3..b9c557fa 100644 --- a/core/xmlhandlers.lua +++ b/core/xmlhandlers.lua @@ -42,7 +42,7 @@ function init_xmlhandlers(session) session.streamid = m_random(1000000, 99999999); print(session, session.host, "Client opened stream"); send("<?xml version='1.0'?>"); - send(format("<stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s' >", session.streamid, session.host)); + 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)); --send("<stream:features>"); --send("<mechanism>PLAIN</mechanism>"); --send [[<register xmlns="http://jabber.org/features/iq-register"/> ]] |