diff options
author | Brian Cully <bjc@kublai.com> | 2017-11-01 21:11:52 +0000 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2017-11-10 11:28:10 -0500 |
commit | 95232ea1e6ee1752bed33170e352cbf4bcf49141 (patch) | |
tree | 24fbf6741afc5ad4c0e1cec9c2d22cd30903bfb4 /input | |
download | xmpt-95232ea1e6ee1752bed33170e352cbf4bcf49141.tar.gz xmpt-95232ea1e6ee1752bed33170e352cbf4bcf49141.zip |
Initial commit.
Diffstat (limited to 'input')
-rw-r--r-- | input | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -0,0 +1,29 @@ +<stream:stream xmlns:stream='http://etherx.jabber.org/streams' + version='1.0' + from='localhost' + id='somestreamid' + xmlns='jabber:client'> + <stream:features> + <mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'> + <mechanism>SCRAM-SHA-1</mechanism> + <mechanism>PLAIN</mechanism> + </mechanisms> + <auth xmlns='http://jabber.org/features/iq-auth'/> + </stream:features> +<success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'></success> +<stream:stream xmlns:stream='http://etherx.jabber.org/streams' + version='1.0' + from='localhost' + id='somestreamid' + xmlns='jabber:client'> + <stream:features> + <bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'/> + <session xmlns='urn:ietf:params:xml:ns:xmpp-session'/> + </stream:features> +<iq from='test0@localhost' to='test0@localhost/xmpt' id='bind' type='result'> + <bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'> + <jid>test0@localhost/xmpt</jid> + </bind> +</iq> +<iq from='test0@localhost' to='test0@localhost/xmpt' id='session' type='result'/> +</stream> |