blob: e272565316afd3fb0b87b64914e48627685394d8 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Save ban reason
[Client] Romeo
password: password
jid: user@localhost
-----
Romeo connects
Romeo sends:
<presence to="muc-outcast-reason@conference.localhost/Romeo">
<x xmlns="http://jabber.org/protocol/muc"/>
</presence>
Romeo receives:
<presence from="muc-outcast-reason@conference.localhost/Romeo">
<x xmlns="http://jabber.org/protocol/muc#user">
<status code="201"/>
<item jid="${Romeo's full JID}" role="moderator" affiliation="owner"/>
<status code="110"/>
</x>
</presence>
Romeo receives:
<message type="groupchat" from="muc-outcast-reason@conference.localhost">
<subject/>
</message>
Romeo sends:
<iq id="lx5" to="muc-outcast-reason@conference.localhost" type="set">
<query xmlns="http://jabber.org/protocol/muc#admin">
<item affiliation="outcast" jid="tybalt@localhost">
<reason>Hey calm down</reason>
</item>
</query>
</iq>
Romeo receives:
<message from="muc-outcast-reason@conference.localhost">
<x xmlns="http://jabber.org/protocol/muc#user">
<status code="301"/>
<item jid="tybalt@localhost" affiliation="outcast">
<reason>Hey calm down</reason>
</item>
</x>
</message>
Romeo receives:
<iq id="lx5" type="result" from="muc-outcast-reason@conference.localhost"/>
Romeo sends:
<iq id="lx6" to="muc-outcast-reason@conference.localhost" type="get">
<query xmlns="http://jabber.org/protocol/muc#admin">
<item affiliation="outcast"/>
</query>
</iq>
Romeo receives:
<iq id="lx6" type="result" from="muc-outcast-reason@conference.localhost">
<query xmlns="http://jabber.org/protocol/muc#admin">
<item jid="tybalt@localhost" affiliation="outcast">
<reason>Hey calm down</reason>
</item>
</query>
</iq>
Romeo disconnects
Romeo sends:
<presence type='unavailable'/>
|