Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

limit number of ice servers to 32 #2679

Merged
merged 3 commits into from
Nov 25, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
more normative
  • Loading branch information
fippo committed Nov 15, 2021
commit 012738bfe47d42328e805d4baf90e1d14c436e54
18 changes: 13 additions & 5 deletions webrtc.html
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ <h2>
<p>
An array of objects describing servers available to be used
by ICE, such as STUN and TURN servers.
</p>
<p class="note">
Existing implementations only utilize the first 32 entries;
the others are ignored.
If the number of ICE servers exceeds an
implementation-defined limit, ignore the ICE servers above
the threshold. This implementation defined limit MUST be
at least 32.
</p>
</dd>
alvestrand marked this conversation as resolved.
Show resolved Hide resolved
<dt data-tests="RTCConfiguration-iceTransportPolicy.html">
Expand Down Expand Up @@ -1359,6 +1359,13 @@ <h4>
checks are unnecessary.
</p>
</li>
<li data-tests="RTCConfiguration-iceServers.html">
<p>
If
<var>configuration</var>.{{RTCConfiguration/iceServer}} is an array
truncate it to the maximum number of supported elements.
</p>
</li>
<li>
<p>
Initialize <var>connection</var>'s [= ICE Agent =].
Expand Down Expand Up @@ -3090,7 +3097,8 @@ <h4>
<li data-tests="RTCConfiguration-iceServers.html">
<p id="config-iceservers">
If <var>configuration</var>.{{RTCConfiguration/iceServers}}
is defined, then run the following steps for each element:
is defined, truncate it to the maximum number of supported
elements and then run the following steps for each element:
</p>
<ol>
<li>
Expand Down