diff options
Diffstat (limited to 'client/SslClient.cpp')
-rw-r--r-- | client/SslClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/SslClient.cpp b/client/SslClient.cpp index 729daaa..831a1f3 100644 --- a/client/SslClient.cpp +++ b/client/SslClient.cpp @@ -38,7 +38,7 @@ SslClient::SslClient(QString addr): port(13666) sslSocket.setLocalCertificate(cert); sslSocket.setPrivateKey(key); sslSocket.setCaCertificates(ca_certs); - sslSocket.setPeerVerifyMode(QSslSocket::VerifyPeer); + sslSocket.setPeerVerifyMode(QSslSocket::VerifyNone); sslSocket.setProtocol(QSsl::SslV3); /* setup signal handlers */ |