• Home
  • Raw
  • Download

Lines Matching refs:ctx_options

2321 set_ssl_version_min_max_legacy(ctx_option_t *ctx_options,  in set_ssl_version_min_max_legacy()  argument
2338 *ctx_options |= SSL_OP_NO_TLSv1_2; in set_ssl_version_min_max_legacy()
2342 (void)ctx_options; in set_ssl_version_min_max_legacy()
2349 *ctx_options |= SSL_OP_NO_TLSv1_1; in set_ssl_version_min_max_legacy()
2357 *ctx_options |= SSL_OP_NO_TLSv1; in set_ssl_version_min_max_legacy()
2371 *ctx_options |= SSL_OP_NO_TLSv1_1; in set_ssl_version_min_max_legacy()
2376 *ctx_options |= SSL_OP_NO_TLSv1_2; in set_ssl_version_min_max_legacy()
2381 *ctx_options |= SSL_OP_NO_TLSv1_3; in set_ssl_version_min_max_legacy()
2461 ctx_option_t ctx_options = 0; in ossl_connect_step1() local
2603 ctx_options = SSL_OP_ALL; in ossl_connect_step1()
2606 ctx_options |= SSL_OP_NO_TICKET; in ossl_connect_step1()
2610 ctx_options |= SSL_OP_NO_COMPRESSION; in ossl_connect_step1()
2615 ctx_options &= ~SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG; in ossl_connect_step1()
2622 ctx_options &= ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; in ossl_connect_step1()
2632 ctx_options |= SSL_OP_NO_SSLv3; in ossl_connect_step1()
2633 ctx_options |= SSL_OP_NO_TLSv1; in ossl_connect_step1()
2635 ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_connect_step1()
2636 ctx_options |= SSL_OP_NO_TLSv1_2; in ossl_connect_step1()
2638 ctx_options |= SSL_OP_NO_TLSv1_3; in ossl_connect_step1()
2650 ctx_options |= SSL_OP_NO_SSLv2; in ossl_connect_step1()
2651 ctx_options |= SSL_OP_NO_TLSv1; in ossl_connect_step1()
2653 ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_connect_step1()
2654 ctx_options |= SSL_OP_NO_TLSv1_2; in ossl_connect_step1()
2656 ctx_options |= SSL_OP_NO_TLSv1_3; in ossl_connect_step1()
2671 ctx_options |= SSL_OP_NO_SSLv2; in ossl_connect_step1()
2672 ctx_options |= SSL_OP_NO_SSLv3; in ossl_connect_step1()
2677 result = set_ssl_version_min_max_legacy(&ctx_options, conn, sockindex); in ossl_connect_step1()
2688 SSL_CTX_set_options(backend->ctx, ctx_options); in ossl_connect_step1()