- From: Martin Thomson <martin.thomson@gmail.com>
- Date: Wed, 24 Apr 2013 10:50:20 -0700
- To: Justin Uberti <juberti@google.com>
- Cc: "public-webrtc@w3.org" <public-webrtc@w3.org>, Mallinath Bareddy <mallinath@google.com>
On 23 April 2013 23:06, Justin Uberti <juberti@google.com> wrote: > So to do this using the existing RTCIceServer syntax, one must create > separate RTCIceServer objects for each URI, all with the same credentials. > It seems like it would be cleaner to allow a list of URIs to be supplied in > a RTCIceServer, which would all share the same credentials. To achieve this, > we could simply change the current .url property from a DOMString to a list, > or add a new .urls property that is a list of DOMStrings. > Any objections? Yeah, what Cullen said, plus: if you have multiple URIs with the same credentials, make multiple RTCIceServers. It's not especially hard: var iceServers = stunServers.concat(turnUris.map(function(turnUri) { return { url: turnUri, credential: cred, username: user }; }));
Received on Wednesday, 24 April 2013 17:50:48 UTC