• Home
  • Raw
  • Download

Lines Matching refs:ctx_options

2157 set_ssl_version_min_max(long *ctx_options, struct connectdata *conn,  in set_ssl_version_min_max()  argument
2174 *ctx_options |= SSL_OP_NO_TLSv1_2; in set_ssl_version_min_max()
2178 (void)ctx_options; in set_ssl_version_min_max()
2185 *ctx_options |= SSL_OP_NO_TLSv1_1; in set_ssl_version_min_max()
2193 *ctx_options |= SSL_OP_NO_TLSv1; in set_ssl_version_min_max()
2207 *ctx_options |= SSL_OP_NO_TLSv1_1; in set_ssl_version_min_max()
2212 *ctx_options |= SSL_OP_NO_TLSv1_2; in set_ssl_version_min_max()
2217 *ctx_options |= SSL_OP_NO_TLSv1_3; in set_ssl_version_min_max()
2296 long ctx_options = 0; in ossl_connect_step1() local
2436 ctx_options = SSL_OP_ALL; in ossl_connect_step1()
2439 ctx_options |= SSL_OP_NO_TICKET; in ossl_connect_step1()
2443 ctx_options |= SSL_OP_NO_COMPRESSION; in ossl_connect_step1()
2448 ctx_options &= ~SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG; in ossl_connect_step1()
2455 ctx_options &= ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; in ossl_connect_step1()
2460 ctx_options |= SSL_OP_NO_SSLv2; in ossl_connect_step1()
2461 ctx_options |= SSL_OP_NO_TLSv1; in ossl_connect_step1()
2463 ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_connect_step1()
2464 ctx_options |= SSL_OP_NO_TLSv1_2; in ossl_connect_step1()
2466 ctx_options |= SSL_OP_NO_TLSv1_3; in ossl_connect_step1()
2479 ctx_options |= SSL_OP_NO_SSLv2; in ossl_connect_step1()
2480 ctx_options |= SSL_OP_NO_SSLv3; in ossl_connect_step1()
2481 result = set_ssl_version_min_max(&ctx_options, conn, sockindex); in ossl_connect_step1()
2487 ctx_options |= SSL_OP_NO_SSLv3; in ossl_connect_step1()
2488 ctx_options |= SSL_OP_NO_TLSv1; in ossl_connect_step1()
2490 ctx_options |= SSL_OP_NO_TLSv1_1; in ossl_connect_step1()
2491 ctx_options |= SSL_OP_NO_TLSv1_2; in ossl_connect_step1()
2493 ctx_options |= SSL_OP_NO_TLSv1_3; in ossl_connect_step1()
2503 SSL_CTX_set_options(BACKEND->ctx, ctx_options); in ossl_connect_step1()