(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

View File

@@ -503,6 +503,8 @@ 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 {
@@ -510,8 +512,6 @@ namespace ix
});
SSL_CTX_set_verify_depth(_ssl_context, 4);
}
}
}
else
{
SSL_CTX_set_verify(_ssl_context, SSL_VERIFY_NONE, nullptr);