The WebRTC API's RTCIceCandidateStats dictionary provides statistics
to an web.rtc.RTCIceCandidate
.
The WebRTC API's RTCIceCandidateStats dictionary provides statistics to an `web.rtc.RTCIceCandidate`.
(address this)
Property.
The address property of the web.rtc.RTCIceCandidateStats
dictionary
the address of the ICE candidate. While it's preferred that the
be specified as an IPv4 or IPv6 numeric address, a fully-qualified
name can be used as well.
candidateAddress = rtcIceCandidateStats.address;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address
Property. The address property of the `web.rtc.RTCIceCandidateStats` dictionary the address of the ICE candidate. While it's preferred that the be specified as an IPv4 or IPv6 numeric address, a fully-qualified name can be used as well. `candidateAddress = rtcIceCandidateStats.address;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address`
(candidate-type this)
Property.
The web.rtc.RTCIceCandidateStats
interface's candidateType
is a string which indicates the type of ICE candidate the object
candidateType = rtcIceCandidateStats.candidateType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType
Property. The `web.rtc.RTCIceCandidateStats` interface's candidateType is a string which indicates the type of ICE candidate the object `candidateType = rtcIceCandidateStats.candidateType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType`
(deleted this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's deleted property
whether or not the candidate has been deleted or released.
isDeleted = rtcIceCandidateStats.deleted;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted
Property. The `web.rtc.RTCIceCandidateStats` dictionary's deleted property whether or not the candidate has been deleted or released. `isDeleted = rtcIceCandidateStats.deleted;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted`
(moz-local-transport this)
Property.
[Non Standard] [Obsolute]
The non-standard Mozilla extension to the web.rtc.RTCIceCandidateStats
mozLocalTransport, has been supplanted by the standard protocol
relayProtocol
properties.
`Instead of using mozLocalTransport, you should use code like this:
localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/mozLocalTransport
Property. [Non Standard] [Obsolute] The non-standard Mozilla extension to the `web.rtc.RTCIceCandidateStats` mozLocalTransport, has been supplanted by the standard `protocol` `relayProtocol` properties. `Instead of using mozLocalTransport, you should use code like this: localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/mozLocalTransport`
(network-type this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's networkType property
the type of network used by a local candidate to communicate
a remote peer.
networkType = rtcIceCandidateStats.networkType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/networkType
Property. The `web.rtc.RTCIceCandidateStats` dictionary's networkType property the type of network used by a local candidate to communicate a remote peer. `networkType = rtcIceCandidateStats.networkType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/networkType`
(port this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's port property
the network port used by the candidate.
candidatePort = rtcIceCandidateStats.port;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port
Property. The `web.rtc.RTCIceCandidateStats` dictionary's port property the network port used by the candidate. `candidatePort = rtcIceCandidateStats.port;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port`
(priority this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's priority property
a positive integer value indicating the priority (or desirability)
the described candidate.
priority = rtcIceCandidateStats.priority;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority
Property. The `web.rtc.RTCIceCandidateStats` dictionary's priority property a positive integer value indicating the priority (or desirability) the described candidate. `priority = rtcIceCandidateStats.priority;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority`
(protocol this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's protocol property
the protocol the specified candidate would use for communication
the remote peer.
protocol = rtcIceCandidateStats.protocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol
Property. The `web.rtc.RTCIceCandidateStats` dictionary's protocol property the protocol the specified candidate would use for communication the remote peer. `protocol = rtcIceCandidateStats.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol`
(relay-protocol this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's relayProtocol
specifies the protocol being used by a local ICE candidate to
with the TURN server.
relayProtocol = rtcIceCandidateStats.relayProtocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol
Property. The `web.rtc.RTCIceCandidateStats` dictionary's relayProtocol specifies the protocol being used by a local ICE candidate to with the TURN server. `relayProtocol = rtcIceCandidateStats.relayProtocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol`
(set-address! this val)
Property.
The address property of the web.rtc.RTCIceCandidateStats
dictionary
the address of the ICE candidate. While it's preferred that the
be specified as an IPv4 or IPv6 numeric address, a fully-qualified
name can be used as well.
candidateAddress = rtcIceCandidateStats.address;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address
Property. The address property of the `web.rtc.RTCIceCandidateStats` dictionary the address of the ICE candidate. While it's preferred that the be specified as an IPv4 or IPv6 numeric address, a fully-qualified name can be used as well. `candidateAddress = rtcIceCandidateStats.address;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address`
(set-candidate-type! this val)
Property.
The web.rtc.RTCIceCandidateStats
interface's candidateType
is a string which indicates the type of ICE candidate the object
candidateType = rtcIceCandidateStats.candidateType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType
Property. The `web.rtc.RTCIceCandidateStats` interface's candidateType is a string which indicates the type of ICE candidate the object `candidateType = rtcIceCandidateStats.candidateType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType`
(set-deleted! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's deleted property
whether or not the candidate has been deleted or released.
isDeleted = rtcIceCandidateStats.deleted;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted
Property. The `web.rtc.RTCIceCandidateStats` dictionary's deleted property whether or not the candidate has been deleted or released. `isDeleted = rtcIceCandidateStats.deleted;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted`
(set-moz-local-transport! this val)
Property.
[Non Standard] [Obsolute]
The non-standard Mozilla extension to the web.rtc.RTCIceCandidateStats
mozLocalTransport, has been supplanted by the standard protocol
relayProtocol
properties.
`Instead of using mozLocalTransport, you should use code like this:
localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;`
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/mozLocalTransport
Property. [Non Standard] [Obsolute] The non-standard Mozilla extension to the `web.rtc.RTCIceCandidateStats` mozLocalTransport, has been supplanted by the standard `protocol` `relayProtocol` properties. `Instead of using mozLocalTransport, you should use code like this: localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/mozLocalTransport`
(set-network-type! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's networkType property
the type of network used by a local candidate to communicate
a remote peer.
networkType = rtcIceCandidateStats.networkType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/networkType
Property. The `web.rtc.RTCIceCandidateStats` dictionary's networkType property the type of network used by a local candidate to communicate a remote peer. `networkType = rtcIceCandidateStats.networkType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/networkType`
(set-port! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's port property
the network port used by the candidate.
candidatePort = rtcIceCandidateStats.port;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port
Property. The `web.rtc.RTCIceCandidateStats` dictionary's port property the network port used by the candidate. `candidatePort = rtcIceCandidateStats.port;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port`
(set-priority! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's priority property
a positive integer value indicating the priority (or desirability)
the described candidate.
priority = rtcIceCandidateStats.priority;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority
Property. The `web.rtc.RTCIceCandidateStats` dictionary's priority property a positive integer value indicating the priority (or desirability) the described candidate. `priority = rtcIceCandidateStats.priority;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority`
(set-protocol! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's protocol property
the protocol the specified candidate would use for communication
the remote peer.
protocol = rtcIceCandidateStats.protocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol
Property. The `web.rtc.RTCIceCandidateStats` dictionary's protocol property the protocol the specified candidate would use for communication the remote peer. `protocol = rtcIceCandidateStats.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol`
(set-relay-protocol! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's relayProtocol
specifies the protocol being used by a local ICE candidate to
with the TURN server.
relayProtocol = rtcIceCandidateStats.relayProtocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol
Property. The `web.rtc.RTCIceCandidateStats` dictionary's relayProtocol specifies the protocol being used by a local ICE candidate to with the TURN server. `relayProtocol = rtcIceCandidateStats.relayProtocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol`
(set-transport-id! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's transportId property
a string that uniquely identifies the transport that produced
RTCTransportStats
from which information about this candidate
taken.
transportID = rtcIceCandidateStats.transportId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId
Property. The `web.rtc.RTCIceCandidateStats` dictionary's transportId property a string that uniquely identifies the transport that produced `RTCTransportStats` from which information about this candidate taken. `transportID = rtcIceCandidateStats.transportId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId`
(set-url! this val)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's url property
the URL of the ICE server from which the described candidate
obtained. This property is only available for local candidates.
url = rtcIceCandidateStats.url;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url
Property. The `web.rtc.RTCIceCandidateStats` dictionary's url property the URL of the ICE server from which the described candidate obtained. This property is only available for local candidates. `url = rtcIceCandidateStats.url;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url`
(transport-id this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's transportId property
a string that uniquely identifies the transport that produced
RTCTransportStats
from which information about this candidate
taken.
transportID = rtcIceCandidateStats.transportId;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId
Property. The `web.rtc.RTCIceCandidateStats` dictionary's transportId property a string that uniquely identifies the transport that produced `RTCTransportStats` from which information about this candidate taken. `transportID = rtcIceCandidateStats.transportId;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId`
(url this)
Property.
The web.rtc.RTCIceCandidateStats
dictionary's url property
the URL of the ICE server from which the described candidate
obtained. This property is only available for local candidates.
url = rtcIceCandidateStats.url;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url
Property. The `web.rtc.RTCIceCandidateStats` dictionary's url property the URL of the ICE server from which the described candidate obtained. This property is only available for local candidates. `url = rtcIceCandidateStats.url;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close