Searched refs:ssl_opts (Results 1 – 9 of 9) sorted by relevance
/third_party/grpc/test/cpp/util/ |
D | test_credentials_provider.cc | 93 SslCredentialsOptions ssl_opts = {test_root_cert, "", ""}; in GetChannelCredentials() local 95 return grpc::SslCredentials(ssl_opts); in GetChannelCredentials() 119 SslServerCredentialsOptions ssl_opts; in GetServerCredentials() local 120 ssl_opts.pem_root_certs = ""; in GetServerCredentials() 124 ssl_opts.pem_key_cert_pairs.push_back(pkcp); in GetServerCredentials() 128 ssl_opts.pem_key_cert_pairs.push_back(pkcp); in GetServerCredentials() 130 return SslServerCredentials(ssl_opts); in GetServerCredentials()
|
D | grpc_tool_test.cc | 140 SslCredentialsOptions ssl_opts = {test_root_cert, "", ""}; in GetChannelCredentials() local 142 grpc::SslCredentials(grpc::SslCredentialsOptions(ssl_opts)); in GetChannelCredentials() 274 SslServerCredentialsOptions ssl_opts; in SetUpServer() local 275 ssl_opts.pem_root_certs = ""; in SetUpServer() 276 ssl_opts.pem_key_cert_pairs.push_back(pkcp); in SetUpServer() 277 creds = SslServerCredentials(ssl_opts); in SetUpServer()
|
/third_party/nghttp2/src/ |
D | asio_server_tls_context.cc | 67 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in configure_tls_context_easy() local 73 SSL_CTX_set_options(ctx, ssl_opts); in configure_tls_context_easy()
|
D | shrpx_connection.cc | 368 auto ssl_opts = SSL_get_options(tls.ssl); in tls_handshake() local 375 if (ssl_opts & SSL_OP_NO_TICKET) { in tls_handshake()
|
D | shrpx_tls.cc | 797 constexpr auto ssl_opts = in create_ssl_context() local 816 SSL_CTX_set_options(ssl_ctx, ssl_opts | tlsconf.tls_proto_mask); in create_ssl_context() 1107 constexpr auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in create_ssl_client_context() local 1114 SSL_CTX_set_options(ssl_ctx, ssl_opts | tlsconf.tls_proto_mask); in create_ssl_client_context()
|
D | HttpServer.cc | 2114 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in run() local 2120 SSL_CTX_set_options(ssl_ctx, ssl_opts); in run()
|
D | h2load.cc | 2472 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in main() local 2476 SSL_CTX_set_options(ssl_ctx, ssl_opts); in main()
|
D | nghttp.cc | 2278 auto ssl_opts = (SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS) | in communicate() local 2282 SSL_CTX_set_options(ssl_ctx, ssl_opts); in communicate()
|
/third_party/grpc/test/cpp/ios/CronetTests/ |
D | CppCronetEnd2EndTests.mm | 70 grpc::SslServerCredentialsOptions ssl_opts; 72 ssl_opts.pem_root_certs = ""; 74 ssl_opts.pem_key_cert_pairs.push_back(pkcp); 75 auto server_creds = SslServerCredentials(ssl_opts);
|