blob: 5effb70184780b1b7c365880cec9e04f5703259d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
|