Lines Matching refs:ctx_options
2807 ossl_set_ssl_version_min_max_legacy(ctx_option_t *ctx_options, in ossl_set_ssl_version_min_max_legacy() argument
2825 *ctx_options |= SSL_OP_NO_TLSv1_2; in ossl_set_ssl_version_min_max_legacy()
2828 (void)ctx_options; in ossl_set_ssl_version_min_max_legacy()
2835 *ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_set_ssl_version_min_max_legacy()
2843 *ctx_options |= SSL_OP_NO_TLSv1; in ossl_set_ssl_version_min_max_legacy()
2857 *ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_set_ssl_version_min_max_legacy()
2862 *ctx_options |= SSL_OP_NO_TLSv1_2; in ossl_set_ssl_version_min_max_legacy()
2867 *ctx_options |= SSL_OP_NO_TLSv1_3; in ossl_set_ssl_version_min_max_legacy()
3489 ctx_option_t ctx_options = 0; in Curl_ossl_ctx_init() local
3617 ctx_options = SSL_OP_ALL; in Curl_ossl_ctx_init()
3620 ctx_options |= SSL_OP_NO_TICKET; in Curl_ossl_ctx_init()
3624 ctx_options |= SSL_OP_NO_COMPRESSION; in Curl_ossl_ctx_init()
3629 ctx_options &= ~(ctx_option_t)SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG; in Curl_ossl_ctx_init()
3636 ctx_options &= ~(ctx_option_t)SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; in Curl_ossl_ctx_init()
3653 ctx_options |= SSL_OP_NO_SSLv2; in Curl_ossl_ctx_init()
3654 ctx_options |= SSL_OP_NO_SSLv3; in Curl_ossl_ctx_init()
3659 result = ossl_set_ssl_version_min_max_legacy(&ctx_options, cf, data); in Curl_ossl_ctx_init()
3670 SSL_CTX_set_options(octx->ssl_ctx, ctx_options); in Curl_ossl_ctx_init()