From 330251a4842485c12ebab268de8f8630d76fd087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Pinkava?= Date: Fri, 23 Sep 2022 00:27:29 +0200 Subject: [PATCH] Replace deprecated QSsl TLS ciphersuite selection --- httpserver/httpconnectionhandlerpool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpserver/httpconnectionhandlerpool.cpp b/httpserver/httpconnectionhandlerpool.cpp index 74c2aded9..6de3a2e0e 100644 --- a/httpserver/httpconnectionhandlerpool.cpp +++ b/httpserver/httpconnectionhandlerpool.cpp @@ -158,7 +158,7 @@ void HttpConnectionHandlerPool::loadSslConfig() sslConfiguration->setLocalCertificate(certificate); sslConfiguration->setPrivateKey(sslKey); sslConfiguration->setPeerVerifyMode(QSslSocket::VerifyNone); - sslConfiguration->setProtocol(QSsl::TlsV1SslV3); + sslConfiguration->setProtocol(QSsl::TlsV1_0); qDebug("HttpConnectionHandlerPool: SSL settings loaded"); #endif