Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

RTCConfiguration

RTCConfigurationは、RTCPeerConnection オブジェクトを介して ice server設定を初期化するためのものです 。 

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

プロパティ

名前 説明
iceServers RTCIceServer[] ice server オブジェクトの配列

RTCIceServer プロパティ

名前 説明
url DOMString 使用するTURNまたはSTUNサーバーのURL
username DOMString アカウントのユーザ名 (任意)
credential DOMString ユーザ名に関連付けられたパスワード (任意)

 

ドキュメントのタグと貢献者

 このページの貢献者: dreissig.jahrhundert
 最終更新者: dreissig.jahrhundert,