Skip to content

Commit

Permalink
Merge pull request #2449 from henbos/200122_RTCPeerConnectionIceError…
Browse files Browse the repository at this point in the history
…Event

RTCPeerConnectionIceErrorEventInit with address and port
  • Loading branch information
aboba committed Jan 23, 2020
2 parents 7e02bc9 + e9423f4 commit c5287a3
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions webrtc.html
Original file line number Diff line number Diff line change
Expand Up @@ -4635,7 +4635,8 @@ <h2>Attributes</h2>
<div>
<pre class="idl"
>dictionary RTCPeerConnectionIceErrorEventInit : EventInit {
DOMString hostCandidate;
DOMString? address;
unsigned short? port;
DOMString url;
required unsigned short errorCode;
USVString statusText;
Expand All @@ -4646,11 +4647,17 @@ <h2>Dictionary <dfn>RTCPeerConnectionIceErrorEventInit</dfn>
<dl data-link-for="RTCPeerConnectionIceErrorEventInit"
data-dfn-for="RTCPeerConnectionIceErrorEventInit" class=
"dictionary-members">
<dt><dfn data-idl>hostCandidate</dfn> of type <span class=
"idlMemberType">DOMString</span></dt>
<dt><dfn data-idl>address</dfn> of type <span class=
"idlMemberType">DOMString</span>, nullable</dt>
<dd>
<p>The local address used to communicate with the STUN or TURN
server, or <code>null</code>.</p>
</dd>
<dt><dfn data-idl>port</dfn> of type <span class=
"idlMemberType">unsigned short</span>, nullable</dt>
<dd>
<p>The local address and port used to communicate
with the STUN or TURN server.</p>
<p>The local port used to communicate with the STUN or TURN
server, or <code>null</code>.</p>
</dd>
<dt><dfn data-idl>url</dfn> of type <span class=
"idlMemberType">DOMString</span></dt>
Expand Down

0 comments on commit c5287a3

Please sign in to comment.