1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

Use TLS 1.2 with Qt 5 when disabling SSLv3

This commit is contained in:
David Rosca 2014-12-24 15:08:30 +01:00
parent 57a9286c05
commit 0ccc759e1f

View File

@ -189,7 +189,7 @@ void NetworkManager::disableSSLv3(bool disable)
tlsProtocol = QSsl::TlsV1;
defaultProtocol = QSsl::TlsV1SslV3;
#else
tlsProtocol = QSsl::TlsV1_0;
tlsProtocol = QSsl::TlsV1_2;
defaultProtocol = QSsl::TlsV1SslV3;
#endif