mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
parent
9de433dffd
commit
82701235ee
@ -108,9 +108,14 @@ void NetworkManager::loadSettings()
|
|||||||
|
|
||||||
// Falling back to Qt 4.7 default behavior, use SslV3 by default
|
// Falling back to Qt 4.7 default behavior, use SslV3 by default
|
||||||
// Fixes issue with some older servers closing the connection
|
// Fixes issue with some older servers closing the connection
|
||||||
QSslConfiguration config = QSslConfiguration::defaultConfiguration();
|
|
||||||
config.setProtocol(QSsl::SslV3);
|
// However, it also makes some servers requesting TLS ClientHello
|
||||||
QSslConfiguration::setDefaultConfiguration(config);
|
// not working, or showing invalid certificates.
|
||||||
|
// See #921
|
||||||
|
|
||||||
|
// QSslConfiguration config = QSslConfiguration::defaultConfiguration();
|
||||||
|
// config.setProtocol(QSsl::SslV3);
|
||||||
|
// QSslConfiguration::setDefaultConfiguration(config);
|
||||||
|
|
||||||
#if defined(Q_OS_WIN) || defined(Q_OS_HAIKU) || defined(Q_OS_OS2)
|
#if defined(Q_OS_WIN) || defined(Q_OS_HAIKU) || defined(Q_OS_OS2)
|
||||||
QString certDir = mApp->PROFILEDIR + "certificates";
|
QString certDir = mApp->PROFILEDIR + "certificates";
|
||||||
|
Loading…
Reference in New Issue
Block a user