You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Matching of RTCIceCandidates is used by operations that take one or more RTCIceCandidatePair dictionaries as inputs, validate the input, and instruct the ICE agent to perform some action on the respective candidate pairs (eg. setSelectedCandidatePair).
There are two options for match RTCIceCandidates:
An instance match
A comparison of the candidate, sdpMid, sdpMLineIndex, and usernameFragment attributes of RTCIceCandidate
Option 2 may be preferable since the RTCIceCandidate is JSON-stringifiable with those 4 attributes.
The text was updated successfully, but these errors were encountered:
Fixes: w3c#186.
The algorithm matches the (non-derived) candidate, sdpMid,
sdpMLineIndex, and usernameFragment attributes of RTCIceCandidate.
The candidate match algorithm will be used in the candidate pair match
algorithm (w3c#187), which will, in turn, be used in validation steps for
RTCIceTransport methods (w3c#188).
Matching of RTCIceCandidates is used by operations that take one or more RTCIceCandidatePair dictionaries as inputs, validate the input, and instruct the ICE agent to perform some action on the respective candidate pairs (eg. setSelectedCandidatePair).
There are two options for match RTCIceCandidates:
Option 2 may be preferable since the RTCIceCandidate is JSON-stringifiable with those 4 attributes.
The text was updated successfully, but these errors were encountered: