Liking cljdoc? Tell your friends :D

web.rtc.RTCIceCandidateStats

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`.
raw docstring

addresscljs

(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`
sourceraw docstring

deletedcljs

(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`
sourceraw docstring

moz-local-transportcljs

(moz-local-transport this)

Property.

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.

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`
sourceraw docstring

network-typecljs

(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`
sourceraw docstring

portcljs

(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`
sourceraw docstring

protocolcljs

(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`
sourceraw docstring

relay-protocolcljs

(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`
sourceraw docstring

set-address!cljs

(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`
sourceraw docstring

set-deleted!cljs

(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`
sourceraw docstring

set-moz-local-transport!cljs

(set-moz-local-transport! this val)

Property.

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.

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`
sourceraw docstring

set-network-type!cljs

(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`
sourceraw docstring

set-port!cljs

(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`
sourceraw docstring

set-protocol!cljs

(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`
sourceraw docstring

set-relay-protocol!cljs

(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`
sourceraw docstring

set-transport-id!cljs

(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`
sourceraw docstring

set-url!cljs

(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`
sourceraw docstring

transport-idcljs

(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`
sourceraw docstring

urlcljs

(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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close