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

Unified Diff: webrtc/p2p/base/transport.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/transport.h
diff --git a/webrtc/p2p/base/transport.h b/webrtc/p2p/base/transport.h
index c2767fb6f0b43c8d7138002953b4dc282b0f7b13..ecca82e25a9c72a3a82019b6a2b3df5a0d2a2c44 100644
--- a/webrtc/p2p/base/transport.h
+++ b/webrtc/p2p/base/transport.h
@@ -212,6 +212,10 @@ struct IceConfig {
// Default nomination mode if the remote does not support renomination.
NominationMode default_nomination_mode = NominationMode::SEMI_AGGRESSIVE;
+ // If set to true, if the remote side supports ICE renomination, we will use
+ // renomination (if this side has the controlling role).
+ bool use_renomination_if_remote_supports = false;
Taylor Brandstetter 2016/08/08 22:28:16 Why not just use `SetIceParameters` with `renomina
honghaiz3 2016/08/11 04:57:57 So we will have a single control to control both
+
IceConfig() {}
IceConfig(int receiving_timeout_ms,
int backup_connection_ping_interval,

Powered by Google App Engine
This is Rietveld 408576698