Lines Matching refs:ssl_ctx_options

948 	int ssl_ctx_options = SSL_OP_ALL;  in php_openssl_get_crypto_method_ctx_flags()  local
951 ssl_ctx_options |= SSL_OP_NO_SSLv2; in php_openssl_get_crypto_method_ctx_flags()
955 ssl_ctx_options |= SSL_OP_NO_SSLv3; in php_openssl_get_crypto_method_ctx_flags()
960 ssl_ctx_options |= SSL_OP_NO_TLSv1; in php_openssl_get_crypto_method_ctx_flags()
965 ssl_ctx_options |= SSL_OP_NO_TLSv1_1; in php_openssl_get_crypto_method_ctx_flags()
970 ssl_ctx_options |= SSL_OP_NO_TLSv1_2; in php_openssl_get_crypto_method_ctx_flags()
975 ssl_ctx_options |= SSL_OP_NO_TLSv1_3; in php_openssl_get_crypto_method_ctx_flags()
979 return ssl_ctx_options; in php_openssl_get_crypto_method_ctx_flags()
1293 long ssl_ctx_options = SSL_CTX_get_options(ctx); in php_openssl_set_server_specific_opts() local
1312 ssl_ctx_options |= SSL_OP_SINGLE_DH_USE; in php_openssl_set_server_specific_opts()
1317 ssl_ctx_options |= SSL_OP_CIPHER_SERVER_PREFERENCE; in php_openssl_set_server_specific_opts()
1320 SSL_CTX_set_options(ctx, ssl_ctx_options); in php_openssl_set_server_specific_opts()
1596 int ssl_ctx_options; in php_openssl_setup_crypto() local
1627 ssl_ctx_options = php_openssl_get_crypto_method_ctx_flags(method_flags); in php_openssl_setup_crypto()
1629 ssl_ctx_options = SSL_OP_ALL; in php_openssl_setup_crypto()
1638 ssl_ctx_options |= SSL_OP_NO_TICKET; in php_openssl_setup_crypto()
1641 ssl_ctx_options &= ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; in php_openssl_setup_crypto()
1644 ssl_ctx_options |= SSL_OP_NO_COMPRESSION; in php_openssl_setup_crypto()
1714 SSL_CTX_set_options(sslsock->ctx, ssl_ctx_options); in php_openssl_setup_crypto()