From 6bf1c539117a5bd704cb1595be98e28847cd9aea Mon Sep 17 00:00:00 2001 From: youennf Date: Thu, 12 Dec 2019 16:56:47 +0100 Subject: [PATCH] Remove RTCNetworkType and networkType fields (#521) --- webrtc-stats.html | 130 ---------------------------------------------- 1 file changed, 130 deletions(-) diff --git a/webrtc-stats.html b/webrtc-stats.html index b32666e3..24a01726 100644 --- a/webrtc-stats.html +++ b/webrtc-stats.html @@ -3795,7 +3795,6 @@

dictionary RTCIceCandidateStats : RTCStats {
              DOMString                transportId;
-             RTCNetworkType           networkType;
              DOMString?               address;
              long                     port;
              DOMString                protocol;
@@ -3820,28 +3819,6 @@ 

produce the RTCTransportStats associated with this candidate.

-
- networkType of type RTCNetworkType -
-
-

- Represents the type of network interface used by the base of a local candidate - (the address the ICE agent sends from). Only present for local candidates; it's - not possible to know what type of network interface a remote candidate is using. -

-
- This stat only tells you about the network interface used by the first "hop"; - it's possible that a connection will be bottlenecked by another type of network. - For example, when using Wi-Fi tethering, the networkType of the - relevant candidate would be "wifi", even when the next hop is over a - cellular connection. -
-

- This reveals information that would otherwise not be available to web pages, - which increases the fingerprint surface. -

-
address of type DOMString @@ -3929,103 +3906,6 @@

-
-

- RTCNetworkType enum -

-
-
-enum RTCNetworkType {
-    "bluetooth",
-    "cellular",
-    "ethernet",
-    "wifi",
-    "wimax",
-    "vpn",
-    "unknown"
-};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Enumeration description -
- bluetooth - -

- A Bluetooth connection. -

-
- cellular - -

- A cellular connection (e.g., EDGE, HSPA, LTE, etc.). -

-
- ethernet - -

- An Ethernet connection. -

-
- wifi - -

- A Wi-Fi connection. -

-
- wimax - -

- A WiMAX connection. -

-
- vpn - -

- The connection runs over a VPN. The underlying network type is not available. -

-
- unknown - -

- The user agent is unable or unwilling to identify the underlying connection - technology. -

-
-
-

@@ -4546,7 +4426,6 @@

DOMString url; long port; DOMString protocol; - RTCNetworkType networkType; unsigned long totalRequestsSent; unsigned long totalResponsesReceived; double totalRoundTripTime; @@ -4583,15 +4462,6 @@

on the "transport" defined in [RFC5245] section 15.1.

-
- networkType of type RTCNetworkType -
-
-

- Represents the type of network interface used. -

-
totalRequestsSent of type unsigned long