Skip to content

Commit

Permalink
Merge pull request #90 from taylor-b/issue_89_candidate_deleted
Browse files Browse the repository at this point in the history
Adding "deleted" property to RTCIceCandidateStats.
  • Loading branch information
alvestrand committed Dec 12, 2016
2 parents 0dc9573 + 5b48534 commit 920d51c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions webrtc-stats.html
Expand Up @@ -1374,6 +1374,7 @@ <h3>
RTCIceCandidateType candidateType;
long priority;
DOMString url;
boolean deleted = false;
};</pre>
<section>
<h2>
Expand Down Expand Up @@ -1442,6 +1443,23 @@ <h2>
surfaced in an <code>RTCPeerConnectionIceEvent</code>.
</p>
</dd>
<dt>
<dfn><code>deleted</code></dfn> of type <span class=
"idlMemberType"><a>boolean</a></span>, defaulting to <code>false</code>
</dt>
<dd>
<p>
For local candidates, <code>true</code> indicates that the
candidate has been deleted/freed as described by [[!RFC5245]].
For host candidates, this means that any network resources
(typically a socket) associated with the candidate have been
released. For TURN candidates, this means the TURN allocation
is no longer active.
</p>
<p>
For remote candidates, this property is not applicable.
</p>
</dd>
</dl>
</section>
</div>
Expand Down

0 comments on commit 920d51c

Please sign in to comment.