Index: webrtc/p2p/base/transportdescription.h |
diff --git a/webrtc/p2p/base/transportdescription.h b/webrtc/p2p/base/transportdescription.h |
index 6f4e9a4bf171137a6cd11bee8f814cc961ba5f70..9a95a947517daec3f635a56f5ae86b4080087f52 100644 |
--- a/webrtc/p2p/base/transportdescription.h |
+++ b/webrtc/p2p/base/transportdescription.h |
@@ -87,7 +87,8 @@ extern const char CONNECTIONROLE_PASSIVE_STR[]; |
extern const char CONNECTIONROLE_ACTPASS_STR[]; |
extern const char CONNECTIONROLE_HOLDCONN_STR[]; |
-constexpr auto ICE_RENOMINATION_STR = "renomination"; |
+constexpr auto ICE_OPTION_TRICKLE = "trickle"; |
+constexpr auto ICE_OPTION_RENOMINATION = "renomination"; |
bool StringToConnectionRole(const std::string& role_str, ConnectionRole* role); |
bool ConnectionRoleToString(const ConnectionRole& role, std::string* role_str); |
@@ -150,7 +151,8 @@ struct TransportDescription { |
bool secure() const { return identity_fingerprint != nullptr; } |
IceParameters GetIceParameters() { |
- return IceParameters(ice_ufrag, ice_pwd, HasOption(ICE_RENOMINATION_STR)); |
+ return IceParameters(ice_ufrag, ice_pwd, |
+ HasOption(ICE_OPTION_RENOMINATION)); |
} |
static rtc::SSLFingerprint* CopyFingerprint( |
@@ -161,6 +163,9 @@ struct TransportDescription { |
return new rtc::SSLFingerprint(*from); |
} |
+ // These are actually ICE options (appearing in the ice-options attribute in |
+ // SDP). |
+ // TODO(deadbeef): Rename to ice_options? |
pthatcher1
2017/04/21 01:09:54
I'd say yes, rename to ice_options.
|
std::vector<std::string> transport_options; |
std::string ice_ufrag; |
std::string ice_pwd; |