Skip to content

Commit

Permalink
Consistently list "disconnected" state before "failed".
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-ivar committed Jan 18, 2018
1 parent dfdbd81 commit 0056169
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions webrtc.html
Expand Up @@ -896,8 +896,8 @@ <h4><dfn>RTCIceConnectionState</dfn> Enum</h4>
"checking",
"connected",
"completed",
"failed",
"disconnected",
"failed",
"closed"
};</pre>
<table data-link-for="RTCIceConnectionState" data-dfn-for=
Expand All @@ -910,16 +910,16 @@ <h4><dfn>RTCIceConnectionState</dfn> Enum</h4>
<td><dfn><code>new</code></dfn></td>
<td>Any of the <code><a>RTCIceTransport</a></code>s are in the
<code>"new"</code> state and none of them are in the
<code>"checking"</code>, <code>"failed"</code> or
<code>"disconnected"</code> state, or all
<code>"checking"</code>, <code>"disconnected"</code> or
<code>"failed"</code> state, or all
<code><a>RTCIceTransport</a></code>s are in the
<code>"closed"</code> state, or there are no transports.</td>
</tr>
<tr>
<td><dfn><code>checking</code></dfn></td>
<td>Any of the <code><a>RTCIceTransport</a></code>s are in the
<code>"checking"</code> state and none of them are in the
<code>"failed"</code> or <code>"disconnected"</code> state.</td>
<code>"disconnected"</code> or <code>"failed"</code> state.</td>
</tr>
<tr>
<td><dfn><code>connected</code></dfn></td>
Expand All @@ -935,14 +935,14 @@ <h4><dfn>RTCIceConnectionState</dfn> Enum</h4>
least one of them is in the <code>"completed"</code> state.</td>
</tr>
<tr>
<td><dfn><code>failed</code></dfn></td>
<td><dfn><code>disconnected</code></dfn></td>
<td>Any of the <code><a>RTCIceTransport</a></code>s are in the
<code>"disconnected"</code> state and none of them are in the
<code>"failed"</code> state.</td>
</tr>
<tr>
<td><dfn><code>disconnected</code></dfn></td>
<td><dfn><code>failed</code></dfn></td>
<td>Any of the <code><a>RTCIceTransport</a></code>s are in the
<code>"disconnected"</code> state and none of them are in the
<code>"failed"</code> state.</td>
</tr>
<tr>
Expand Down Expand Up @@ -7765,8 +7765,8 @@ <h3><dfn>RTCIceTransportState</dfn> Enum</h3>
"checking",
"connected",
"completed",
"failed",
"disconnected",
"failed",
"closed"
};</pre>
<table data-link-for="RTCIceTransportState" data-dfn-for=
Expand Down Expand Up @@ -7811,13 +7811,6 @@ <h3><dfn>RTCIceTransportState</dfn> Enum</h3>
all successful candidate pairs, the state transitions to
"failed".</td>
</tr>
<tr>
<td><dfn><code>failed</code></dfn></td>
<td>The <code><a>RTCIceTransport</a></code> has finished
gathering, received an indication that there are no more remote
candidates, finished checking all candidate pairs, and all pairs
have either failed connectivity checks or have lost consent.</td>
</tr>
<tr>
<td><dfn><code>disconnected</code></dfn></td>
<td>
Expand All @@ -7839,6 +7832,13 @@ <h3><dfn>RTCIceTransportState</dfn> Enum</h3>
waiting for additional remote candidates.
</td>
</tr>
<tr>
<td><dfn><code>failed</code></dfn></td>
<td>The <code><a>RTCIceTransport</a></code> has finished
gathering, received an indication that there are no more remote
candidates, finished checking all candidate pairs, and all pairs
have either failed connectivity checks or have lost consent.</td>
</tr>
<tr>
<td><dfn><code>closed</code></dfn></td>
<td>The <code><a>RTCIceTransport</a></code> has shut down and is
Expand Down

0 comments on commit 0056169

Please sign in to comment.