(openssl) Always set verify peer when it is not disabled (#250)

This commit is contained in:
jb-gcx 2020-11-11 18:12:39 +01:00 committed by GitHub
parent 51ec32405d
commit 422febf15d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -503,14 +503,14 @@ namespace ix
errMsg += ERR_error_string(sslErr, nullptr);
return false;
}
SSL_CTX_set_verify(
_ssl_context, SSL_VERIFY_PEER, [](int preverify, X509_STORE_CTX*) -> int {
return preverify;
});
SSL_CTX_set_verify_depth(_ssl_context, 4);
}
}
SSL_CTX_set_verify(
_ssl_context, SSL_VERIFY_PEER, [](int preverify, X509_STORE_CTX*) -> int {
return preverify;
});
SSL_CTX_set_verify_depth(_ssl_context, 4);
}
else
{