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

Clarify when icecandidatepairremove is fired. #204

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
16 changes: 15 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,21 @@ <h3>
The [= ICE agent =] will continue to send data using |candidatePair| until instructed to use another candidate pair with {{RTCIceTransport/selectCandidatePair}}.
</p>
<p>
When the [= ICE agent =] has picked a candidate pair to remove, the [= user agent =] MUST [= queue a task =] to <dfn
The [= ICE agent =] can decide to remove a candidate pair for several reasons. Examples include:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The [= ICE agent =] can decide to remove a candidate pair for several reasons. Examples include:
The [= ICE agent =] can decide to remove a candidate pair for several reasons.
<p class="note"> Examples include:

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved the entire text blurb into a non-normative note.

</p>
<ul>
<li>
A candidate could be [= freed =] because it is not associated with the selected candidate pair.
</li>
<li>
A candidate pair is no longer available due to a loss of the associated network interface.
</li>
<li>
All candidate pairs are being removed due to an ICE restart, as described in section 9 of [[RFC8445]].
</li>
</ul>
sam-vi marked this conversation as resolved.
Show resolved Hide resolved
<p>
When the [= ICE agent =] has decided to remove a candidate pair, the [= user agent =] MUST [= queue a task =] to <dfn
id="rtcicetransport-remove">remove a candidate pair</dfn>:
</p>
<ol class="algorithm">
Expand Down
Loading