commit | 7c4e7458b5ce99c13a75d5be7d718ef94e2f8f9f | [log] [tgz] |
---|---|---|
author | Joachim Bauch <jbauch@webrtc.org> | Thu May 28 23:06:30 2015 +0200 |
committer | Joachim Bauch <jbauch@webrtc.org> | Thu May 28 21:06:44 2015 +0000 |
tree | e04422bf6fae35e34f6a8990740032fd457ee6b7 | |
parent | 45b229cc89e0f88f6ee330485b2efd59861566cd [diff] [blame] |
Support multiple URLs in PeerConnectionInterface::IceServer This adds support for multiple URLs in a IceServer configuration as defined in http://w3c.github.io/webrtc-pc/#idl-def-RTCIceServer. BUG=2096 R=pthatcher@webrtc.org Review URL: https://webrtc-codereview.appspot.com/57489004 Cr-Commit-Position: refs/heads/master@{#9320}
diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h index 960e286..329137f 100644 --- a/talk/app/webrtc/peerconnectioninterface.h +++ b/talk/app/webrtc/peerconnectioninterface.h
@@ -175,7 +175,9 @@ }; struct IceServer { + // TODO(jbauch): Remove uri when all code using it has switched to urls. std::string uri; + std::vector<std::string> urls; std::string username; std::string password; };