Index: webrtc/p2p/base/faketransportcontroller.h |
diff --git a/webrtc/p2p/base/faketransportcontroller.h b/webrtc/p2p/base/faketransportcontroller.h |
index 251a0c681aa448bee449937bd43f7ae0f1d1a508..65c59be98d0ee93777f6454e8742ded125caf5b1 100644 |
--- a/webrtc/p2p/base/faketransportcontroller.h |
+++ b/webrtc/p2p/base/faketransportcontroller.h |
@@ -332,7 +332,7 @@ class FakeTransportChannel : public TransportChannelImpl, |
std::string remote_ice_ufrag_; |
std::string remote_ice_pwd_; |
IceMode remote_ice_mode_ = ICEMODE_FULL; |
- rtc::SSLProtocolVersion ssl_max_version_ = rtc::SSL_PROTOCOL_DTLS_10; |
+ rtc::SSLProtocolVersion ssl_max_version_ = rtc::SSL_PROTOCOL_DTLS_12; |
rtc::SSLFingerprint dtls_fingerprint_; |
rtc::SSLRole ssl_role_ = rtc::SSL_CLIENT; |
size_t connection_count_ = 0; |
@@ -453,7 +453,7 @@ class FakeTransport : public Transport { |
FakeTransport* dest_ = nullptr; |
bool async_ = false; |
rtc::scoped_refptr<rtc::RTCCertificate> certificate_; |
- rtc::SSLProtocolVersion ssl_max_version_ = rtc::SSL_PROTOCOL_DTLS_10; |
+ rtc::SSLProtocolVersion ssl_max_version_ = rtc::SSL_PROTOCOL_DTLS_12; |
}; |
// Fake TransportController class, which can be passed into a BaseChannel object |