-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
WebRTC 1.0 has added support for RTCIceCredentialType to RTCIceServer:
dictionary RTCIceServer {
required (DOMString or sequence) urls;
DOMString username;
DOMString credential;
RTCIceCredentialType credentialType = "password";
};
enum RTCIceCredentialType {
"password",
"token"
};
Proposal is to add support into ORTC API as well.
Reactions are currently unavailable