(openssl) Always set verify peer when it is not disabled (#250)
This commit is contained in:
parent
51ec32405d
commit
422febf15d
@ -503,6 +503,8 @@ namespace ix
|
|||||||
errMsg += ERR_error_string(sslErr, nullptr);
|
errMsg += ERR_error_string(sslErr, nullptr);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
SSL_CTX_set_verify(
|
SSL_CTX_set_verify(
|
||||||
_ssl_context, SSL_VERIFY_PEER, [](int preverify, X509_STORE_CTX*) -> int {
|
_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);
|
SSL_CTX_set_verify_depth(_ssl_context, 4);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
SSL_CTX_set_verify(_ssl_context, SSL_VERIFY_NONE, nullptr);
|
SSL_CTX_set_verify(_ssl_context, SSL_VERIFY_NONE, nullptr);
|
||||||
|
Loading…
Reference in New Issue
Block a user