mirror of
https://github.com/outbackdingo/sysadm.git
synced 2026-01-27 10:20:26 +00:00
OSX Doesn't support TLS 1.1 or 1.2, so we fallback to 1.0
This commit is contained in:
@@ -73,7 +73,7 @@ bool WebServer::setupWebSocket(quint16 port){
|
||||
qWarning() << "Could not read WS key file:" << KF.fileName();
|
||||
}
|
||||
config.setPeerVerifyMode(QSslSocket::VerifyNone);
|
||||
config.setProtocol(QSsl::TlsV1_2);
|
||||
config.setProtocol(QSsl::TlsV1_0);
|
||||
WSServer->setSslConfiguration(config);
|
||||
//Setup Connections
|
||||
connect(WSServer, SIGNAL(newConnection()), this, SLOT(NewSocketConnection()) );
|
||||
|
||||
Reference in New Issue
Block a user