From 5b48534f124d5619786cf369d91398914e6a2570 Mon Sep 17 00:00:00 2001 From: Taylor Brandstetter Date: Tue, 6 Dec 2016 12:05:20 -0800 Subject: [PATCH] Adding "deleted" property to RTCIceCandidateStats. Addresses issue #89. --- webrtc-stats.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/webrtc-stats.html b/webrtc-stats.html index 854c0a8f..6fc36c06 100644 --- a/webrtc-stats.html +++ b/webrtc-stats.html @@ -1326,6 +1326,7 @@

RTCIceCandidateType candidateType; long priority; DOMString url; + boolean deleted = false; };

@@ -1394,6 +1395,23 @@

surfaced in an RTCPeerConnectionIceEvent.

+
+ deleted of type boolean, defaulting to false +
+
+

+ For local candidates, true 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. +

+

+ For remote candidates, this property is not applicable. +

+