Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XEP-0371: Make 'network' optional, and add a mapping to SDP #1019

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions xep-0371.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<abstract>This specification defines a Jingle transport method that results in sending media data using datagram associations via the User Datagram Protocol (UDP) or using end-to-end connections via the Transport Control Protocol (TCP). This transport method is negotiated via the Interactive Connectivity Establishment (ICE) methodology (which provides robust NAT traversal for media traffic) and also supports the ability to exchange candidates throughout the life of the session, consistent with so-called "Trickle ICE" (draft-ietf-ice-trickle).</abstract>
&LEGALNOTICE;
<number>0371</number>
<status>Deferred</status>
<status>Experimental</status>
<type>Standards Track</type>
<sig>Standards</sig>
<approver>Council</approver>
Expand All @@ -27,6 +27,14 @@
<supersededby/>
<shortname>jingle-ice</shortname>
&stpeter;
<revision>
<version>0.4.0</version>
<date>2020-12-08</date>
<initials>egp</initials>
<remark>
<p>Make 'network' optional, and add a mapping to SDP.</p>
</remark>
</revision>
<revision>
<version>0.3.1</version>
<date>2021-03-04</date>
Expand Down Expand Up @@ -281,8 +289,8 @@ INITIATOR RESPONDER
<tr>
<td>network</td>
<td>An index, starting at 0, referencing which network this candidate is on for a given peer (used for diagnostic purposes if the calling hardware has more than one Network Interface Card).</td>
<td>N/A</td>
<td>0</td>
<td>"extension-att-name network extension-att-value &lt;the network&gt;" in a=candidate line</td>
<td>0</td>
</tr>
<tr>
<td>port</td>
Expand Down Expand Up @@ -1022,12 +1030,12 @@ Romeo Gateway Juliet
<xs:attribute name='generation' type='xs:unsignedByte' use='optional'/>
<xs:attribute name='id' type='xs:NCName' use='optional'/>
<xs:attribute name='ip' type='xs:string' use='required'/>
<xs:attribute name='network' type='xs:unsignedByte' use='required'/>
<xs:attribute name='port' type='xs:unsignedShort' use='required'/>
<xs:attribute name='priority' type='xs:positiveInteger' use='required'/>
<xs:attribute name='protocol' type='xs:NCName' use='required'/>
<xs:attribute name='rel-addr' type='xs:string' use='optional'/>
<xs:attribute name='rel-port' type='xs:unsignedShort' use='optional'/>
<xs:attribute name='network' type='xs:unsignedByte' use='optional'/>
<xs:attribute name='tcptype' use='optional'>
<xs:simpleType>
<xs:restriction base='xs:NCName'>
Expand Down