1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-11-21 16:55:07 -05:00

Add participant ID to roster;

This commit is contained in:
Steve Kille 2018-12-11 08:52:13 +00:00
parent 373f1b137e
commit 33dd5386b1

View File

@ -44,6 +44,7 @@
<initials>sek</initials> <initials>sek</initials>
<remark> <remark>
Discovery on Account rather than Server; Discovery on Account rather than Server;
Add participant ID to roster;
</remark> </remark>
</revision> </revision>
<revision> <revision>
@ -541,12 +542,12 @@ This approach enables flexible support of multiple clients for a MIX channel pa
]]></example> ]]></example>
<p> <p>
MIX channels in the roster information returned in response to a request for this additional MIX information MUST have an element &lt;channel/&gt; qualified by the urn:xmpp:mix:roster:0' namespace included in the roster item, as shown inf the following example. MIX channels in the roster information returned in response to a request for this additional MIX information MUST have an element &lt;channel/&gt; qualified by the urn:xmpp:mix:roster:0' namespace included in the roster item. The &lt;channel/&gt; element MUST also include a 'participant-id' attribute that is the stable ID of the client. This facilitates the client to match messages that reference this stable ID. A MIX extended roster item is shown in the following example.
</p> </p>
<example caption="Roster Item Encoding of a MIX Channel"><![CDATA[ <example caption="Roster Item Encoding of a MIX Channel"><![CDATA[
<item jid='balcony@example.net'> <item jid='balcony@example.net'>
<channel xmlns='urn:xmpp:mix:roster:0'/> <channel xmlns='urn:xmpp:mix:roster:0' participant-id='123456'/>
</item> </item>
]]></example> ]]></example>