Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Unified Diff: webrtc/p2p/base/transportdescriptionfactory.h

Issue 2224563004: Add signaling to support ICE renomination. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/p2p/base/transportdescriptionfactory.h
diff --git a/webrtc/p2p/base/transportdescriptionfactory.h b/webrtc/p2p/base/transportdescriptionfactory.h
index 828aa6d22c4f2fae6b0b7d233d2209d3095b9642..0cf478aa089001c17162b42af29305e841213c92 100644
--- a/webrtc/p2p/base/transportdescriptionfactory.h
+++ b/webrtc/p2p/base/transportdescriptionfactory.h
@@ -21,9 +21,10 @@ class SSLIdentity;
namespace cricket {
struct TransportOptions {
- TransportOptions() : ice_restart(false), prefer_passive_role(false) {}
- bool ice_restart;
- bool prefer_passive_role;
+ bool ice_restart = false;
+ bool prefer_passive_role = false;
+ // This tells the remote side that we supports ICE renomination.
+ bool ice_renomination = true;
pthatcher1 2016/08/08 21:56:23 I think we should make this false like use_renomi
honghaiz3 2016/08/11 04:57:58 Done.
};
// Creates transport descriptions according to the supplied configuration.

Powered by Google App Engine
This is Rietveld 408576698