Liking cljdoc? Tell your friends :D

rtc.RTCIceServer

The RTCIceServer dictionary defines how to connect to a single server (such as a STUN or TURN server). It includes both the and the necessary credentials, if any, to connect to the server.

The RTCIceServer dictionary defines how to connect to a single
server (such as a STUN or TURN server). It includes both the
and the necessary credentials, if any, to connect to the server.
raw docstring

credentialcljs

(credential this)

Property.

The rtc.RTCIceServer dictionary's credential property is a providing the credential to use when connecting to the described This is typically a password, key, or other secret.

`var iceServer = { ... credential = credential, ... };

var credential = iceServer.credential;

iceServer.credential = newCredential;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credential

Property.

The `rtc.RTCIceServer` dictionary's credential property is a
providing the credential to use when connecting to the described
This is typically a password, key, or other secret.

`var iceServer = {
...
credential = credential,
...
};

var credential = iceServer.credential;

iceServer.credential = newCredential;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credential`
sourceraw docstring

credential-typecljs

(credential-type this)

Property.

The rtc.RTCIceServer dictionary's credentialType property is string value from the RTCIceCredentialType enum which indicates type of credential the rtc.RTCIceServer.credential value is. default is password.

`var iceServer = { ... credentialType = newCredentialType, ... };

var credentialType = iceServer.credentialType;

iceServer.credentialType = newCredentialType;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credentialType

Property.

The `rtc.RTCIceServer` dictionary's credentialType property is
string value from the RTCIceCredentialType enum which indicates
type of credential the `rtc.RTCIceServer.credential` value is.
default is password.

`var iceServer = {
...
credentialType = newCredentialType,
...
};

var credentialType = iceServer.credentialType;

iceServer.credentialType = newCredentialType;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credentialType`
sourceraw docstring

set-credential!cljs

(set-credential! this val)

Property.

The rtc.RTCIceServer dictionary's credential property is a providing the credential to use when connecting to the described This is typically a password, key, or other secret.

`var iceServer = { ... credential = credential, ... };

var credential = iceServer.credential;

iceServer.credential = newCredential;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credential

Property.

The `rtc.RTCIceServer` dictionary's credential property is a
providing the credential to use when connecting to the described
This is typically a password, key, or other secret.

`var iceServer = {
...
credential = credential,
...
};

var credential = iceServer.credential;

iceServer.credential = newCredential;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credential`
sourceraw docstring

set-credential-type!cljs

(set-credential-type! this val)

Property.

The rtc.RTCIceServer dictionary's credentialType property is string value from the RTCIceCredentialType enum which indicates type of credential the rtc.RTCIceServer.credential value is. default is password.

`var iceServer = { ... credentialType = newCredentialType, ... };

var credentialType = iceServer.credentialType;

iceServer.credentialType = newCredentialType;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credentialType

Property.

The `rtc.RTCIceServer` dictionary's credentialType property is
string value from the RTCIceCredentialType enum which indicates
type of credential the `rtc.RTCIceServer.credential` value is.
default is password.

`var iceServer = {
...
credentialType = newCredentialType,
...
};

var credentialType = iceServer.credentialType;

iceServer.credentialType = newCredentialType;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/credentialType`
sourceraw docstring

set-url!cljs

(set-url! this val)

Property.

The obsolete rtc.RTCIceServer dictionary's url property specifies URL of a single ICE server to be used while negotiating connections. was removed from the specification in June 2013 but is still used in older examples and books, so we include documentation to help adapt old code to new browsers.

`var iceServer = { ... url = iceServerUrl, ... };

var serverUrl = iceServer.url;

iceServer.url = iceServerUrl;

The value of this property is a dom.DOMString containing the full URL of a server to use during ICE negotiation.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/url

Property.

The obsolete `rtc.RTCIceServer` dictionary's url property specifies
URL of a single ICE server to be used while negotiating connections.
was removed from the specification in June 2013 but is still
used in older examples and books, so we include documentation
to help adapt old code to new browsers.

`var iceServer = {
...
url = iceServerUrl,
...
};

var serverUrl = iceServer.url;

iceServer.url = iceServerUrl;

The value of this property is a `dom.DOMString` containing the full URL of a server to use during ICE negotiation.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/url`
sourceraw docstring

set-urls!cljs

(set-urls! this val)

Property.

The rtc.RTCIceServer dictionary's urls property specifies the or URLs of the servers to be used for ICE negotiations. These typically STUN and/or TURN servers.

`var iceServer = { urls = iceServerUrl | [ url1, ..., urlN ], username: "webrtc", // optional credential: "turnpassword" // optional };

iceServers.push(iceServer);

The value of this property may be specified as a single URL or as an array of multiple URLs.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/urls

Property.

The `rtc.RTCIceServer` dictionary's urls property specifies the
or URLs of the servers to be used for ICE negotiations. These
typically STUN and/or TURN servers.

`var iceServer = {
urls = iceServerUrl | [ url1, ..., urlN ],
username: \"webrtc\", // optional
credential: \"turnpassword\" // optional
};

iceServers.push(iceServer);

The value of this property may be specified as a single URL or as an array of multiple URLs.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/urls`
sourceraw docstring

set-username!cljs

(set-username! this val)

Property.

The rtc.RTCIceServer dictionary's username property is a string specifies the username to use when authenticating with the ICE being described.

`var iceServer = { ... username = username, ... };

var username = iceServer.username;

iceServer.username = newUsername;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/username

Property.

The `rtc.RTCIceServer` dictionary's username property is a string
specifies the username to use when authenticating with the ICE
being described.

`var iceServer = {
...
username = username,
...
};

var username = iceServer.username;

iceServer.username = newUsername;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/username`
sourceraw docstring

urlcljs

(url this)

Property.

The obsolete rtc.RTCIceServer dictionary's url property specifies URL of a single ICE server to be used while negotiating connections. was removed from the specification in June 2013 but is still used in older examples and books, so we include documentation to help adapt old code to new browsers.

`var iceServer = { ... url = iceServerUrl, ... };

var serverUrl = iceServer.url;

iceServer.url = iceServerUrl;

The value of this property is a dom.DOMString containing the full URL of a server to use during ICE negotiation.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/url

Property.

The obsolete `rtc.RTCIceServer` dictionary's url property specifies
URL of a single ICE server to be used while negotiating connections.
was removed from the specification in June 2013 but is still
used in older examples and books, so we include documentation
to help adapt old code to new browsers.

`var iceServer = {
...
url = iceServerUrl,
...
};

var serverUrl = iceServer.url;

iceServer.url = iceServerUrl;

The value of this property is a `dom.DOMString` containing the full URL of a server to use during ICE negotiation.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/url`
sourceraw docstring

urlscljs

(urls this)

Property.

The rtc.RTCIceServer dictionary's urls property specifies the or URLs of the servers to be used for ICE negotiations. These typically STUN and/or TURN servers.

`var iceServer = { urls = iceServerUrl | [ url1, ..., urlN ], username: "webrtc", // optional credential: "turnpassword" // optional };

iceServers.push(iceServer);

The value of this property may be specified as a single URL or as an array of multiple URLs.`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/urls

Property.

The `rtc.RTCIceServer` dictionary's urls property specifies the
or URLs of the servers to be used for ICE negotiations. These
typically STUN and/or TURN servers.

`var iceServer = {
urls = iceServerUrl | [ url1, ..., urlN ],
username: \"webrtc\", // optional
credential: \"turnpassword\" // optional
};

iceServers.push(iceServer);

The value of this property may be specified as a single URL or as an array of multiple URLs.`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/urls`
sourceraw docstring

usernamecljs

(username this)

Property.

The rtc.RTCIceServer dictionary's username property is a string specifies the username to use when authenticating with the ICE being described.

`var iceServer = { ... username = username, ... };

var username = iceServer.username;

iceServer.username = newUsername;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/username

Property.

The `rtc.RTCIceServer` dictionary's username property is a string
specifies the username to use when authenticating with the ICE
being described.

`var iceServer = {
...
username = username,
...
};

var username = iceServer.username;

iceServer.username = newUsername;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer/username`
sourceraw docstring

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

× close