The Wayback Machine - https://web.archive.org/web/20150906204232/https://developer.mozilla.org/it/docs/Web/API/RTCConfiguration

RTCConfiguration

di 6 collaboratori:
I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Registrati per tradurlo tu.

The RTCConfiguration is passed into the RTCPeerConnection object to initialize the ice server configuration.

Example

var configuration = { iceServers: [{ url: "stun:stun.services.mozilla.com",
                                     username: "louis@mozilla.com", 
                                     credential: "webrtcdemo" }]
}
var pc = new RTCPeerConnection(configuration);

Properties

Name Type Description
iceServers RTCIceServer[] An array of ice server objects

RTCIceServer Properties

Name Type Description
url DOMString A TURN or STUN url for a server to use.
username DOMString An account username (optional)
credential DOMString The password associated with username, if given (optional)

 

Etichette del documento e nomi di chi ha collaborato alla sua stesura

Contributors to this page: eharris, teoli, zmi, Jib, Sheppy, wesj
Ultima modifica di: eharris,