-
Notifications
You must be signed in to change notification settings - Fork 15
/
jingle-transports.xml
68 lines (62 loc) · 1.85 KB
/
jingle-transports.xml
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
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE registry SYSTEM 'reg.dtd' [
<!ENTITY % ents SYSTEM 'reg.ent'>
<!ELEMENT registry ( meta, transport* ) >
<!ELEMENT transport ( name, desc, type, doc ) >
<!ELEMENT type (#PCDATA)* >
%ents;
]>
<?xml-stylesheet type='text/xsl' href='jingle-transports.xsl'?>
<registry>
<meta>
<title>Jingle Transport Methods</title>
&LEGALNOTICE;
<overview>This is the official registry of Jingle Transport Methods as maintained by the ®ISTRAR; and authorized by &xep0166;.</overview>
<revision>
<version>0.2</version>
<date>2011-09-23</date>
<initials>psa</initials>
<remark>Added the "ibb" and "s5b" transports from XEP-0261 and XEP-0260, respectively.</remark>
</revision>
<revision>
<version>0.1</version>
<date>2009-06-10</date>
<initials>psa</initials>
<remark>Initial version, populated with the "ice-udp" and "raw-udp" transports from XEP-0176 and XEP-0177, respectively.</remark>
</revision>
</meta>
<transport>
<name>ibb</name>
<desc>
A method for data exchange over In-Band Bytestreams.
</desc>
<type>streaming</type>
<doc>XEP-0261</doc>
</transport>
<transport>
<name>ice-udp</name>
<desc>
A method for negotiation of out-of-band UDP connections
with built-in NAT and firewall traversal, equivalent to
the IETF's Interactive Connectivity Establishment (ICE)
methodology when resulting in the use of UDP as the
transport protocol.
</desc>
<type>datagram</type>
<doc>XEP-0176</doc>
</transport>
<transport>
<name>raw-udp</name>
<desc>A method for exchanging data over raw UDP associations.</desc>
<type>datagram</type>
<doc>XEP-0177</doc>
</transport>
<transport>
<name>s5b</name>
<desc>
A method for negotiating data exchange over SOCKS5 Bytestreams.
</desc>
<type>streaming</type>
<doc>XEP-0260</doc>
</transport>
</registry>