blob: 2e26eaceef06f204ccf1a5ad6b4ba42c4af4f569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
---
title: RTCConfiguration
slug: Web/API/RTCConfiguration
translation_of: Web/API/RTCConfiguration
---
<p>{{APIRef("WebRTC")}}<span class="seoSummary"><code>RTCConfigurationは、</code>{{domxref("RTCPeerConnection")}} オブジェクトを介して ice server設定を初期化するためのものです 。 </span></p>
<h2 id="例">例</h2>
<pre class="brush: js">var configuration = { iceServers: [{ url: "stun:stun.services.mozilla.com",
username: "louis@mozilla.com",
credential: "webrtcdemo" }]
}
var pc = new RTCPeerConnection(configuration);</pre>
<h2 id="プロパティ">プロパティ</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">名前</th>
<th scope="col">型</th>
<th scope="col">説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>iceServers</code></td>
<td>RTCIceServer[]</td>
<td>ice server オブジェクトの配列</td>
</tr>
</tbody>
</table>
<h2 id="RTCIceServer_プロパティ">RTCIceServer プロパティ</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">名前</th>
<th scope="col">型</th>
<th scope="col">説明</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>url</code></td>
<td>{{domxref("DOMString")}}</td>
<td>使用するTURNまたはSTUNサーバーのURL</td>
</tr>
<tr>
<td><code>username</code></td>
<td>{{domxref("DOMString")}}</td>
<td>アカウントのユーザ名 (任意)</td>
</tr>
<tr>
<td><code>credential</code></td>
<td>{{domxref("DOMString")}}</td>
<td>ユーザ名に関連付けられたパスワード (任意)</td>
</tr>
</tbody>
</table>
<p> </p>
|