The RTCIceCandidate interface—part of the WebRTC API—represents
candidate Internet Connectivity Establishment (ICE) configuration
may be used to establish an web.audio.RTCPeerConnection
.
The RTCIceCandidate interface—part of the WebRTC API—represents candidate Internet Connectivity Establishment (ICE) configuration may be used to establish an `web.audio.RTCPeerConnection`.
(candidate this)
Property.
The read-only property candidate on the web.rtc.RTCIceCandidate
returns a web.dom.DOMString
describing the candidate in detail.
var candidate = RTCIceCandidate.candidate;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/candidate
Property. The read-only property candidate on the `web.rtc.RTCIceCandidate` returns a `web.dom.DOMString` describing the candidate in detail. `var candidate = RTCIceCandidate.candidate;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/candidate`
(component this)
Property.
The read-only component property on the web.rtc.RTCIceCandidate
is a string which indicates whether the candidate is an RTP or
RTCP candidate.
var component = RTCIceCandidate.component;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/component
Property. The read-only component property on the `web.rtc.RTCIceCandidate` is a string which indicates whether the candidate is an RTP or RTCP candidate. `var component = RTCIceCandidate.component;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/component`
Constructor.
The RTCIceCandidate() constructor creates and returns a new web.rtc.RTCIceCandidate
object, which can be configured to represent a single ICE candidate.
candidateInfo Optional
An optional web.rtc.RTCIceCandidateInit
object providing information about the candidate; if this is provided, the candidate is initialized configured to represent the described candidate.
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/RTCIceCandidate
Constructor. The RTCIceCandidate() constructor creates and returns a new `web.rtc.RTCIceCandidate` object, which can be configured to represent a single ICE candidate. candidateInfo Optional An optional `web.rtc.RTCIceCandidateInit` object providing information about the candidate; if this is provided, the candidate is initialized configured to represent the described candidate. See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/RTCIceCandidate`
(foundation this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only foundation
is a string which uniquely identifies the candidate across multiple
var foundation = RTCIceCandidate.foundation;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/foundation
Property. The `web.rtc.RTCIceCandidate` interface's read-only foundation is a string which uniquely identifies the candidate across multiple `var foundation = RTCIceCandidate.foundation;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/foundation`
(ip this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only ip property
a string providing the address of the device which is the source
the candidate.
var address = RTCIceCandidate.ip;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/ip
Property. The `web.rtc.RTCIceCandidate` interface's read-only ip property a string providing the address of the device which is the source the candidate. `var address = RTCIceCandidate.ip;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/ip`
(port this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only port property
the port number on the device at the address given by ip
at
the candidate's peer can be reached.
var port = RTCIceCandidate.port;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/port
Property. The `web.rtc.RTCIceCandidate` interface's read-only port property the port number on the device at the address given by `ip` at the candidate's peer can be reached. `var port = RTCIceCandidate.port;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/port`
(priority this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only priority
specifies the candidate's priority according to the remote peer;
higher this value is, the better the remote peer considers the
to be.
var priority = RTCIceCandidate.priority;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/priority
Property. The `web.rtc.RTCIceCandidate` interface's read-only priority specifies the candidate's priority according to the remote peer; higher this value is, the better the remote peer considers the to be. `var priority = RTCIceCandidate.priority;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/priority`
(protocol this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only protocol
is a string which indicates whether the candidate uses UDP or
as its transport protocol.
var protocol = RTCIceCandidate.protocol;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/protocol
Property. The `web.rtc.RTCIceCandidate` interface's read-only protocol is a string which indicates whether the candidate uses UDP or as its transport protocol. `var protocol = RTCIceCandidate.protocol;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/protocol`
(related-address this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only relatedAddress
is a string indicating the related address of a relay or reflexive
var relAddress = RTCIceCandidate.relatedAddress;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedAddress
Property. The `web.rtc.RTCIceCandidate` interface's read-only relatedAddress is a string indicating the related address of a relay or reflexive `var relAddress = RTCIceCandidate.relatedAddress;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedAddress`
(related-port this)
Property.
The web.rtc.RTCIceCandidate
interface's read-only relatedPort
indicates the port number of reflexive or relay candidates.
var relPort = RTCIceCandidate.relatedPort;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort
Property. The `web.rtc.RTCIceCandidate` interface's read-only relatedPort indicates the port number of reflexive or relay candidates. `var relPort = RTCIceCandidate.relatedPort;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort`
(sdp-m-line-index this)
Property.
The read-only sdpMLineIndex property on the web.rtc.RTCIceCandidate
is a zero-based index of the m-line describing the media associated
the candidate.
var sdpMLineIndex = RTCIceCandidate.sdpMLineIndex;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMLineIndex
Property. The read-only sdpMLineIndex property on the `web.rtc.RTCIceCandidate` is a zero-based index of the m-line describing the media associated the candidate. `var sdpMLineIndex = RTCIceCandidate.sdpMLineIndex;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMLineIndex`
(sdp-mid this)
Property.
The read-only property sdpMid on the web.rtc.RTCIceCandidate
returns a web.dom.DOMString
specifying the media stream identification
of the media component with which the candidate is associated.
var sdpMid = RTCIceCandidate.sdpMid;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMid
Property. The read-only property sdpMid on the `web.rtc.RTCIceCandidate` returns a `web.dom.DOMString` specifying the media stream identification of the media component with which the candidate is associated. `var sdpMid = RTCIceCandidate.sdpMid;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/sdpMid`
(set-related-port! this val)
Property.
The web.rtc.RTCIceCandidate
interface's read-only relatedPort
indicates the port number of reflexive or relay candidates.
var relPort = RTCIceCandidate.relatedPort;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort
Property. The `web.rtc.RTCIceCandidate` interface's read-only relatedPort indicates the port number of reflexive or relay candidates. `var relPort = RTCIceCandidate.relatedPort;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/relatedPort`
(username-fragment this)
Property.
The read-only usernameFragment property on the web.rtc.RTCIceCandidate
is a string indicating the username fragment ("ufrag") that
identifies a single ICE interaction session.
var ufrag = RTCIceCandidate.usernameFragment;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/usernameFragment
Property. The read-only usernameFragment property on the `web.rtc.RTCIceCandidate` is a string indicating the username fragment (\"ufrag\") that identifies a single ICE interaction session. `var ufrag = RTCIceCandidate.usernameFragment;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate/usernameFragment`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close