SSL_OP_NO_TLSv1_2
.value = SSL_OP_NO_TLSv1_2,
.value = SSL_OP_NO_TLSv1_2,
options |= SSL_OP_NO_TLSv1 | SSL_OP_NO_TLSv1_2;
else if ((options & SSL_OP_NO_TLSv1_2) == 0)
if ((options & SSL_OP_NO_TLSv1_2) && min_version < TLS1_2_VERSION)
SSL_CTX_clear_options(ssl_ctx, SSL_OP_NO_TLSv1_2);
SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_TLSv1_2);
ssl_ctx_options |= SSL_OP_NO_TLSv1_2;