Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/share/doc/telepathy-gabble/ drwxr-xr-x |
Viewing file: Select action/file-type: XEP-proto-tubes: Tubes over XMPP
WARNING: This document has not yet been accepted for consideration or approved in any official manner by the XMPP Standards Foundation, and this document is not yet an XMPP Extension Protocol (XEP). If this document is accepted as a XEP by the XMPP Council, it will be published at <http://xmpp.org/extensions/> and announced on the <standards@xmpp.org> mailing list. Table of Contents
Appendices 1. IntroductionThe XML namespace defined here is http://telepathy.freedesktop.org/xmpp/tubes (NS_TUBES in the telepathy-gabble source code). 2. RequirementsThe Telepathy project defines an API called Tubes to be used by arbitrary collaborative applications to communicate with instant messaging contacts. This API is intended to be the same for several IM protocols. Tubes can be used in two types of context, referred to in Telepathy as Tubes channels:
Each tube has a service name, used to dispatch it to an appropriate client application, and some essentially arbitrary parameters understood by that client application. The tube's initiator (the contact who started it) must also be tracked. The following tube types are currently supported:
As well as sending and receiving data, the following operations are supported:
3. Use Cases3.1 In a multi-user chatExample 1. Offering a new D-Bus tube <!-- The first witch offers a D-Bus tube to the service lit.macbeth.BubblingCauldron. The tube parameters provided via the Telepathy API are (in dbus-python notation): { 's': 'hello', # string 'ay': dbus.ByteArray('hello'), # byte-array 'u': dbus.UInt32(123), # unsigned Int32 'i': dbus.Int32(-123), # signed Int32 } See below for how the dbus-name is generated. --> <presence to='darkcave@conf.macbeth.lit' from='darkcave@conf.macbeth.lit/FirstWitch'> <x xmlns='http://jabber.org/protocol/muc'> </x> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='darkcave@conf.macbeth.lit/FirstWitch' service='lit.macbeth.BubblingCauldron' stream-id='12345' id='54321' dbus-name=':2.Rmlyc3RXaXRjaAAA'> <parameters> <parameter name='s' type='str'>hello</parameter> <parameter name='ay' type='bytes'>aGVsbG8=</parameter> <parameter name='u' type='uint'>123</parameter> <parameter name='i' type='int'>-123</parameter> </parameters> </tube> </tubes> </presence> Example 2. Accepting (joining) a D-Bus tube <!-- The second witch accepts the tube by copying it into her own MUC presence, changing the dbus-name to an arbitrary value that nobody else is using. --> <presence to='darkcave@conf.macbeth.lit' from='darkcave@conf.macbeth.lit/Second witch'> <x xmlns='http://jabber.org/protocol/muc'> </x> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='darkcave@conf.macbeth.lit/FirstWitch' service='lit.macbeth.BubblingCauldron' stream-id='12345' id='54321' dbus-name=':2.U2Vjb25kIHdpdGNo'> <parameters> <parameter name='s' type='str'>hello</parameter> <parameter name='ay' type='bytes'>aGVsbG8=</parameter> <parameter name='u' type='uint'>123</parameter> <parameter name='i' type='int'>-123</parameter> </parameters> </tube> </tubes> </presence> Example 3. Sending data in a MUC D-Bus tube <!-- The second witch sends a D-Bus signal to everyone. MUC D-Bus tubes always use MUC Bytestreams (XEP-proto-muc-bytestream). Messages can also go to a particular participant (for method calls and replies), and can be split up if too big - see the MUC Bytestreams document for details. In the serialized D-Bus message, the sender field will be ":2.U2Vjb25kIHdpdGNo". If the message was being sent to the first witch only rather than to all participants, its destination field would be ":2.Rmlyc3RXaXRjaAAA". The 'sid' here is the same as the 'stream-id' in the <tube> announcement. --> <message to='darkcave@conf.macbeth.lit' from='darkcave@conf.macbeth.lit/Second witch'> <data xmlns='http://telepathy.freedesktop.org/xmpp/protocol/muc-bytestreams' sid="12345">base64base64...</data> </message> Example 4. Offering a new stream tube <!-- The second witch also offers a stream tube to her WebDAV server. --> <presence to='darkcave@conf.macbeth.lit' from='darkcave@conf.macbeth.lit/Second witch'> <x xmlns='http://jabber.org/protocol/muc'> </x> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <!-- This D-Bus tube is still here from the first example - it's not part of the stream tube --> <tube type='dbus' initiator='darkcave@conf.macbeth.lit/FirstWitch' service='lit.macbeth.BubblingCauldron' stream-id='12345' id='54321' dbus-name=':2.U2Vjb25kIHdpdGNo'> <parameters> <parameter name='s' type='str'>hello</parameter> <parameter name='ay' type='bytes'>aGVsbG8=</parameter> <parameter name='u' type='uint'>123</parameter> <parameter name='i' type='int'>-123</parameter> </parameters> </tube> <!-- This is the new stream tube. There is no initiator attribute because the initiator is implicitly the participant whose presence it's seen in --> <tube type='stream' service='webdav' id='666'> <parameters> <parameter name='u' type='str'>anonymous</parameter> <parameter name='p' type='str'>password</parameter> <parameter name='path' type='str'>/plots/macbeth</parameter> </parameters> </tube> </tubes> </presence> Example 5. Accepting (joining) a stream tube <!-- The first witch makes a connection to the second witch to open the stream. Data transfer proceeds as usual according to Stream Initiation - in this case, they'll use IBB. The child element is <muc-stream> and not <stream> in order to disambiguate between SI-based streams in a MUC Tubes channel, and SI-based streams in a 1-1 channel between two members of a MUC. The first witch MUST NOT copy the tube into her own presence in this case - only the initiator should put stream tubes in their presence, since stream tubes cannot continue after the initiator leaves. --> <iq from='darkcave@conf.macbeth.lit/FirstWitch' to='darkcave@conf.macbeth.lit/Second witch' type='set'> <si xmlns='http://jabber.org/protocol/si' id='55555' profile='http://telepathy.freedesktop.org/xmpp/tubes'> <muc-stream xmlns='http://telepathy.freedesktop.org/xmpp/tubes' tube='666' /> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns="jabber:x:data" type="form"> <field var='stream-method' type='list-single'> <option> <value>http://jabber.org/protocol/ibb</value> </option> </field> </x> </feature> </si> </iq> <!-- The second witch acknowledges the IQ and data transfer proceeds using stream ID 55555 (not shown here, but it's the same as for normal IBB-over-SI). --> Example 6. Leaving a tube explicitly <!-- The second witch stops offering the stream tube. She SHOULD close the stream first, if possible - assume this has already been done. --> <presence to='darkcave@conf.macbeth.lit' from='darkcave@conf.macbeth.lit/Second witch'> <x xmlns='http://jabber.org/protocol/muc'> </x> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='darkcave@conf.macbeth.lit/FirstWitch' service='lit.macbeth.BubblingCauldron' stream-id='12345' id='54321' dbus-name=':2.Rmlyc3RXaXRjaAAA'> <parameters> <parameter name='s' type='str'>hello</parameter> <parameter name='ay' type='bytes'>aGVsbG8=</parameter> <parameter name='u' type='uint'>123</parameter> <parameter name='i' type='int'>-123</parameter> </parameters> </tube> </tubes> </presence> Leaving the MUC also implicitly implies leaving all tubes. 3.2 Peer to peerExample 7. Offering a new D-Bus tube <!-- Romeo offers Tybalt a D-Bus tube to the (hypothetical) service com.example.Chess. The tube parameters provided via the Telepathy API are (in dbus-python notation): { 'theme': 'montagues-vs-capulets.conf' # string } --> <iq to='tybalt@capulet.lit/Work' from='romeo@montague.lit/Home' type='set'> <si xmlns='http://jabber.org/protocol/si' id='chess-stream-1' profile='http://telepathy.freedesktop.org/xmpp/tubes'> <tube xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> type='dbus' service='com.example.Chess' id='333'> <parameters> <parameter name='theme' type='str'>montagues-vs-capulets.conf</parameter> </parameters> </tube> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns="jabber:x:data" type="form"> <field var='stream-method' type='list-single'> <option> <value>http://jabber.org/protocol/ibb</value> </option> </field> </x> </feature> </si> </iq> Example 8. Accepting (joining) a D-Bus tube <!-- Tybalt accepts the tube by accepting the SI --> <iq to='romeo@montague.lit/Home' from='tybalt@capulet.lit/Work' type='result'> <si xmlns='http://jabber.org/protocol/si'> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns='jabber:x:data' type='submit'> <field var='stream=method'> <value>http://jabber.org/protocol/ibb</value> </field> </x> </feature> </si> </iq> <!-- Messages are now sent using whatever stream protocol was negotiated, in this case IBB. Implementations MUST NOT assume that message boundaries are preserved. Implementations MAY preserve message boundaries. --> Example 9. Offering a new stream tube <!-- Romeo offers Juliet a D-Bus tube to a private web server The tube parameters provided via the Telepathy API are (in dbus-python notation): { 'path': '/poetry/for-juliet/' # string } --> <message to='juliet@capulet.lit/Balcony' from='romeo@montague.lit/Home'> <tube xmlns='http://telepathy.freedesktop.org/xmpp/tubes' type='stream' service='http' id='1402'> <parameters> <parameter name='path' type='str'>/poetry/for-juliet/</parameter> </parameters> </tube> </message> Example 10. Accepting (joining) a stream tube <!-- Juliet's web browser connects to Juliet's XMPP implementation, causing a stream to be opened --> <iq to='romeo@montague.lit/Home' from='juliet@capulet.lit/Balcony' type='set'> <si xmlns='http://jabber.org/protocol/si' id='http-stream-1a' profile='http://telepathy.freedesktop.org/xmpp/tubes'> <stream xmlns='http://telepathy.freedesktop.org/xmpp/tubes' tube='1402'/> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns="jabber:x:data" type="form"> <field var='stream-method' type='list-single'> <option> <value>http://jabber.org/protocol/ibb</value> </option> </field> </x> </feature> </si> </iq> <!-- Romeo's XMPP implementation accepts the incoming connection and routes it to his web server --> <iq to='juliet@capulet.lit/Balcony' from='romeo@montague.lit/Home' type='result'> <si xmlns='http://jabber.org/protocol/si'> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns='jabber:x:data' type='submit'> <field var='stream=method'> <value>http://jabber.org/protocol/ibb</value> </field> </x> </feature> </si> </iq> <!-- Messages are now sent using whatever stream protocol was negotiated, in this case IBB. --> If Juliet's web browser opens multiple parallel connections to her XMPP implementation, the implementation will open multiple parallel SI streams as shown above, and Romeo's XMPP implementation will open multiple parallel connections to his web server. This MUST be supported by implementations. Example 11. Leaving a tube (initiator) <!-- Romeo stops offering the stream tube. He SHOULD close all streams first. If not, Juliet SHOULD close all streams when this message is received. --> <message to='juliet@capulet.lit/Balcony' from='romeo@montague.lit/Home'> <close xmlns='http://telepathy.freedesktop.org/xmpp/tubes' tube='1402'/> </message> Example 12. Leaving a tube (non-initiator) <!-- Alternatively, Juliet could reject the stream tube. She SHOULD close all streams first. If not, Romeo SHOULD close all streams in response to this message. --> <message from='juliet@capulet.lit/Balcony' to='romeo@montague.lit/Home'> <close xmlns='http://telepathy.freedesktop.org/xmpp/tubes' tube='1402'/> </message> Only stream tubes use a message stanza to be closed. D-Bus tubes are closed implicitly when the underlying bytestream is closed and thus do not need an explicit message stanza. 3.3 In a link-local multi-user chatExample 13. Offering a new D-Bus tube <!-- Suppose Mercutio and Tybalt are in a link-local chatroom, with their mDNS presence records being mercutio@mab._presence._tcp.local. and Tybalt@feline._presence._tcp.local. Mercutio offers a D-Bus tube to the service lit.verona.Duel. This time one Tube parameter was provided by the Telepathy API, a string called 'weapon' with value "swords". See below for how the dbus-name is generated. --> <!-- Sent by mercutio@mab --> <message type='groupchat'> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='mercutio@mab' service='lit.verona.Duel' stream-id='8' id='54321' dbus-name=':2.bWVyY3V0aW9AbWFi'> <parameters> <parameter name='weapon' type='str'>swords</parameter> </parameters> </tube> </tubes> </message> Example 14. Accepting (joining) a D-Bus tube <!-- Tybalt joins the D-Bus tube, changing the dbus-name appropriately. In the implementation of Tubes on link-local MUC he may also have a different stream-id. --> <!-- Sent by Tybalt@feline --> <message type='groupchat'> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='mercutio@mab' service='lit.macbeth.BubblingCauldron' stream-id='6' id='54321' dbus-name=':2.VHliYWx0QGZlbGluZQAA'> <parameters> <parameter name='weapon' type='str'>swords</parameter> </parameters> </tube> </tubes> </message> Example 15. Sending data in a link-local MUC D-Bus tube <!-- Tybalt sends a D-Bus message and Mercutio responds. Link-local MUC D-Bus tubes always use the rMulticast streams 1 to 255; in this case, because Tybalt has stream-id='6' in his announcement message, all messages from Tybalt in stream 6 MUST be interpreted as part of tube 54321. Similarly, all messages from Mercutio in stream 8 MUST be interpreted as part of tube 54321. Messages from Tybalt in stream 8 are NOT part of tube 54321. --> <!-- (a binary rMulticast message is sent by Tybalt with stream ID 6; its payload is a raw D-Bus message) --> <!-- (a binary rMulticast message is sent by Mercutio with stream ID 8; its payload is also a raw D-Bus message) --> Example 16. Joining and being notified about link-local MUC tubes <!-- An rMulticast join event occurs, in which Romeo and Benvolio join the chatroom. Their mDNS presence records are: romeo@angstbook._presence._tcp.local. benvolio@peacemaker._presence._tcp.local. Mercutio and Tybalt must both respond by re-sending their tube announcements to the chatroom, once. They SHOULD NOT send their tube announcements twice when two participants join in a single join event. --> <!-- rMulticast protocol indicates that romeo@angstbook and benvolio@peacemaker have joined the room --> <!-- Sent by mercutio@mab --> <message type='groupchat'> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='mercutio@mab' service='lit.verona.Duel' stream-id='8' id='54321' dbus-name=':2.bWVyY3V0aW9AbWFi'> <parameters> <parameter name='weapon' type='str'>swords</parameter> </parameters> </tube> </tubes> </message> <!-- Sent by Tybalt@feline --> <message type='groupchat'> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <tube type='dbus' initiator='mercutio@mab' service='lit.verona.Duel' stream-id='6' id='54321' dbus-name=':2.VHliYWx0QGZlbGluZQAA'> <parameters> <parameter name='weapon' type='str'>swords</parameter> </parameters> </tube> </tubes> </message> Example 17. Offering a new stream tube <!-- Mercutio offers a stream tube to his WebDAV server. This message would also be re-sent if another rMulticast join event occurred. --> <message type='groupchat'> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <!-- This D-Bus tube is still here from the first example - it's not part of the stream tube --> <tube type='dbus' initiator='mercutio@mab' service='lit.verona.Duel' stream-id='8' id='54321' dbus-name=':2.bWVyY3V0aW9AbWFi'> <parameters> <parameter name='weapon' type='str'>swords</parameter> </parameters> </tube> <!-- This is the new stream tube. There is no initiator attribute because the initiator is implicitly the participant whose message it's seen in --> <tube type='stream' service='webdav' id='666'> <parameters> <parameter name='path' type='str'>/warez</parameter> </parameters> </tube> </tubes> </presence> Example 18. Accepting (joining) a stream tube <!-- Romeo joins the stream tube to download some MP3s from Mercutio's server. The child element is, again, <muc-stream> and not <stream>. Romeo MUST NOT copy the tube into his own tube announcements in this case - only the initiator should announce stream tubes, since stream tubes cannot continue after the initiator leaves. --> <!-- Sent by romeo@angstbook --> <iq to='mercutio@mab' type='set'> <si xmlns='http://jabber.org/protocol/si' id='55555' profile='http://telepathy.freedesktop.org/xmpp/tubes'> <muc-stream xmlns='http://telepathy.freedesktop.org/xmpp/tubes' tube='666' /> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns="jabber:x:data" type="form"> <field var='stream-method' type='list-single'> <option> <value>jabber:iq:oob</value> </option> </field> </x> </feature> </si> </iq> <!-- Sent by mercutio@mab --> <iq to='romeo@angstbook' type='result'> <si xmlns='http://jabber.org/protocol/si' id='55555' profile='http://telepathy.freedesktop.org/xmpp/tubes'> <muc-stream xmlns='http://telepathy.freedesktop.org/xmpp/tubes' tube='666'/> <feature xmlns='http://jabber.org/protocol/feature-neg'> <x xmlns='jabber:x:data' type='submit'> <field var='stream-method'> <value>jabber:iq:oob</value> </field> </x> </feature> </si> </iq> <!-- Sent by romeo@angstbook --> <iq to='mercutio@mab' type='set'> <query xmlns='jabber:iq:oob' sid='55555'> <url>x-tcp://angstbook.local:1234</url> </query> </iq> <!-- Mercutio resolves the IP address of angstbook.local and connects to port 1234, and out-of-band transfer proceeds --> <!-- FIXME: this has too many steps and it ends up with a TCP connection flowing "the wrong way" --> Example 19. Leaving a tube explicitly <!-- Mercutio stops offering the stream tube. He SHOULD close the OOB stream first, if possible - assume this has already been done. --> <message type='groupchat'> <tubes xmlns='http://telepathy.freedesktop.org/xmpp/tubes'> <!-- This D-Bus tube is still here from the first example - it's now the only one, because the stream tube has been removed --> <tube type='dbus' initiator='mercutio@mab' service='lit.verona.Duel' stream-id='8' id='54321' dbus-name=':2.bWVyY3V0aW9AbWFi'> <parameters> <parameter name='weapon' type='str'>swords</parameter> </parameters> </tube> </tubes> </message> Leaving the link-local MUC (a leave or split event from rMulticast) also implicitly implies leaving all tubes. 4. Tube capability4.1 Global tube capabilityThe tube feature is advertised with XEP-0115 Entity Capabilities using this string: http://telepathy.freedesktop.org/xmpp/tubes 4.2 Specific tube capabilityWe want to know which tube the contacts can handle. There is two different kind of tube capabilities:
Only the first kind is considered. The second is out of scope of this specification. Each specific service is advertised with XEP-0115 Entity Capabilities with this string: http://telepathy.freedesktop.org/xmpp/tubes/$type#$service where $type is the tube type (either "dbus" or "stream") and $service is the service name (e.g. "vnc" or "TicTacTube"). 5. Business Rules5.1 D-Bus unique names in a MUC contextThe D-Bus unique names used in the MUC SHOULD be ":2." followed by the MUC nick (i.e. the resource part of the MUC JID) processed with the following algorithm:
This produces collision-free unique names of length no more than 251 octets (4/3 * 186 + 3) for nicknames no longer than 186 UTF-8 octets (replacing "=" with "A" is harmless here because XMPP resources cannot contain U+0000). For longer nicknames it makes collisions highly unlikely, and produces 255-octet unique names (4/3 * 189 + 3), which still fit into D-Bus' 255-octet limit. The choice of 186 and 169 for the magic numbers ensures that these long nicknames can only have unique-name collisions with other long nicknames, and that the Base64 encoding step when applied to long nicknames does not leave any trailing "=" characters. Implementations MUST NOT use unique names that start with ":2." but are not formed according to the above rules, and SHOULD treat tube elements containing such a dbus-name as if they were invalid. For backwards compatibility with earlier implementations, the dbus-name MAY also be ":1." followed by an arbitrary unique string of up to 252 characters chosen from A-Z, a-z, 0-9, "-" or "_". 5.2 D-Bus unique names in a link-local MUC contextThe D-Bus unique names used in a link-local MUC SHOULD be ":2." followed by the _presence._tcp instance name (e.g. mercutio@mab) processed with the algorithm above. Again, implementations MUST NOT use unique names that start with ":2." but are not formed according to the above rules, and SHOULD treat tube elements containing such a dbus-name as if they were invalid. 5.3 Definition of the tubes SI profileThe Tubes SI profile is indicated by the profile string http://telepathy.freedesktop.org/xmpp/tubes. A Tubes SI IQ can be classified as follows:
5.4 Parameter typesThe allowed parameter types are:
5.5 TODOFIXME: how big do we want to allow a message to be? In the D-Bus specification the limit is 2**27 bytes, in the default dbus-daemon configuration (as used on the system bus) it's 32M. FIXME: limit how many messages are queued up somehow (the system bus limits it to 127M in total) 6. Security ConsiderationsFIXME 7. IANA ConsiderationsNone. 8. XMPP Registrar ConsiderationsNone, this isn't a real XEP (yet?). 9. XML Schema<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='http://telepathy.freedesktop.org/xmpp/protocol/tubes' xmlns='http://telepathy.freedesktop.org/xmpp/protocol/tubes' elementFormDefault='qualified'> <!-- Container for <tube> elements in MUC <presence> --> <xs:element name='tubes'> <xs:complexType> <xs:sequence minOccurs='0'> <xs:element ref='tube' minOccurs='0' maxOccurs='unbounded'/> </xs:sequence> </xs:complexType> </xs:element> <!-- A tube offer --> <xs:element name='tube'> <xs:complexType> <!-- Required attributes --> <xs:attribute name='id' type='xs:unsignedInt' use='required'/> <xs:attribute name='type' use='required'> <xs:simpleType> <xs:restriction base='xs:NCName'> <xs:enumeration value='dbus'/> <xs:enumeration value='stream'/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name='service' type='xs:string' use='required'/> <!-- MUC D-Bus tube attributes --> <!-- MUST be present for MUC D-Bus tubes, SHOULD NOT be emitted for other types of tube, MUST be ignored for other types of tube --> <xs:attribute name='initiator' type='xs:string' use='optional'/> <xs:attribute name='dbus-name' type='xs:string' use='optional'/> <xs:attribute name='stream-id' type='xs:string' use='optional'/> <!-- Parameters --> <xs:element name='parameters'> <xs:sequence minOccurs='0'> <xs:element name='parameter' minOccurs='0' maxOccurs='unbounded' type='name-value-pair'/> </xs:element> </xs:sequence> </xs:element> </xs:complexType> </xs:element> <!-- A name-value pair --> <xs:complexType name='name-value-pair'> <xs:simpleContent> <xs:extension base='xs:string'> <xs:attribute name='name' type='xs:string'/> <xs:attribute name='type'> <xs:simpleType> <xs:restriction base='xs:NCName'> <xs:enumeration value='bool'/> <xs:enumeration value='str'/> <xs:enumeration value='bytes'/> <xs:enumeration value='int'/> <xs:enumeration value='uint'/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:extension> </xs:simpleContent> </xs:complexType> <xs:complexType name='tube-reference'> <xs:simpleContent> <xs:extension base='empty'> <xs:attribute name='tube' use='required' type='xs:unsignedInt'/> </xs:extension> </xs:simpleContent> </xs:complexType> <xs:element name='close' type='tube-reference'/> <xs:element name='stream' type='tube-reference'/> <!-- only valid in a MUC --> <xs:element name='muc-stream' type='tube-reference'/> <xs:simpleType name='empty'> <xs:restriction base='xs:string'> <xs:enumeration value=''/> </xs:restriction> </xs:simpleType> </xs:schema> 10. Appendix: test data for D-Bus unique name algorithmThe string "short" produces the unique name ":2.c2hvcnQA". The string "FirstWitch", as used in the examples, produces the unique name ":2.Rmlyc3RXaXRjaAAA". The string "Second witch", as used in the examples, produces the unique name ":2.U2Vjb25kIHdpdGNo". The string consisting of 18 repetitions of "0123456789" followed by "012345" (186 characters) produces a unique name consisting of ":2.", followed by 6 repetitions of the 40-character string "MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5", followed by "MDEyMzQ1". The string consisting of 18 repetitions of "0123456789" followed by "0123456" (187 characters) produces a unique name consisting of ":2.", followed by 5 repetitions of the 40-character string above, followed by "MDEyMzQ1Njc4OTAxMjM0NTY3OEVd9C5NgmmRD6jp1ftG6XUEc11x". The string consisting of 20 repetitions of "0123456789" (200 characters) produces a unique name consisting of ":2.", followed by 5 repetitions of the 40-character string above, followed by "MDEyMzQ1Njc4OTAxMjM0NTY3OO-utwRnwcoUFhnJVMKg5pm9Hxal". AppendicesAppendix A: Document Information
Series: XEP Appendix B: Author InformationSimon McVittie
Email:
simon.mcvittie@collabora.co.uk Alban Crequy
Email:
alban.crequy@collabora.co.uk Robert McQueen
Email:
robert.mcqueen@collabora.co.uk Appendix C: Legal NoticesCopyrightPermissionsDisclaimer of WarrantyLimitation of LiabilityIPR ConformanceAppendix D: Relation to XMPPThe Extensible Messaging and Presence Protocol (XMPP) is defined in the XMPP Core (RFC 3920) and XMPP IM (RFC 3921) specifications contributed by the XMPP Standards Foundation to the Internet Standards Process, which is managed by the Internet Engineering Task Force in accordance with RFC 2026. Any protocol defined in this document has been developed outside the Internet Standards Process and is to be understood as an extension to XMPP rather than as an evolution, development, or modification of XMPP itself. Appendix E: Discussion VenueThe primary venue for discussion of XMPP Extension Protocols is the <standards@xmpp.org> discussion list. Discussion on other xmpp.org discussion lists might also be appropriate; see <http://xmpp.org/about/discuss.shtml> for a complete list. Errata can be sent to <editor@xmpp.org>. Appendix F: Requirements ConformanceThe following requirements keywords as used in this document are to be interpreted as described in RFC 2119: "MUST", "SHALL", "REQUIRED"; "MUST NOT", "SHALL NOT"; "SHOULD", "RECOMMENDED"; "SHOULD NOT", "NOT RECOMMENDED"; "MAY", "OPTIONAL". Appendix G: NotesAppendix H: Revision HistoryNote: Older versions of this specification might be available at http://xmpp.org/extensions/attic/ Version Gabble 0.7.17 (2008-12-14)Define Tube capabilities. (ac/ram)Version Gabble 0.7.0 (2007-09-27)
Version 0.0.1 (2007-09-25)First draft. Only protocol changes are listed in subsequent proto-XEP versions. (smcv)END |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0222 ]-- |