Issue 222: RTCIceCredentialType

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. 

Received on Monday, 29 June 2015 20:04:52 UTC