Home
last modified time | relevance | path

Searched refs:server_ctx (Results 1 – 7 of 7) sorted by relevance

/third_party/libuv/test/
Dbenchmark-multi-accept.c67 struct server_ctx { struct
205 struct server_ctx* servers) { in send_listen_handles()
258 struct server_ctx *ctx; in server_cb()
283 struct server_ctx* ctx; in sv_async_cb()
284 ctx = container_of(handle, struct server_ctx, async_handle); in sv_async_cb()
292 struct server_ctx* ctx; in sv_connection_cb()
294 ctx = container_of(server_handle, struct server_ctx, server_handle); in sv_connection_cb()
363 struct server_ctx* servers; in test_tcp()
383 struct server_ctx* ctx = servers + i; in test_tcp()
411 struct server_ctx* ctx = servers + i; in test_tcp()
[all …]
/third_party/openssl/test/
Dssl_test.c397 SSL_CTX *server_ctx = NULL, *server2_ctx = NULL, *client_ctx = NULL, in test_handshake() local
411 server_ctx = SSL_CTX_new_ex(libctx, NULL, DTLS_server_method()); in test_handshake()
412 if (!TEST_true(SSL_CTX_set_options(server_ctx, in test_handshake()
414 || !TEST_true(SSL_CTX_set_max_proto_version(server_ctx, 0))) in test_handshake()
454 server_ctx = SSL_CTX_new_ex(libctx, NULL, TLS_server_method()); in test_handshake()
455 if (!TEST_true(SSL_CTX_set_max_proto_version(server_ctx, maxversion)) in test_handshake()
456 || !TEST_true(SSL_CTX_set_options(server_ctx, in test_handshake()
499 if (!TEST_ptr(server_ctx) in test_handshake()
504 if (!SSL_CTX_config(server_ctx, "server") in test_handshake()
518 result = do_handshake(server_ctx, server2_ctx, client_ctx, in test_handshake()
[all …]
/third_party/openssl/test/helpers/
Dhandshake.c485 static int configure_handshake_ctx(SSL_CTX *server_ctx, SSL_CTX *server2_ctx, in configure_handshake_ctx() argument
496 if (!TEST_int_eq(SSL_CTX_set_max_send_fragment(server_ctx, in configure_handshake_ctx()
542 SSL_CTX_set_tlsext_servername_callback(server_ctx, servername_ignore_cb); in configure_handshake_ctx()
543 SSL_CTX_set_tlsext_servername_arg(server_ctx, server2_ctx); in configure_handshake_ctx()
546 SSL_CTX_set_tlsext_servername_callback(server_ctx, servername_reject_cb); in configure_handshake_ctx()
547 SSL_CTX_set_tlsext_servername_arg(server_ctx, server2_ctx); in configure_handshake_ctx()
552 SSL_CTX_set_client_hello_cb(server_ctx, client_hello_ignore_cb, server2_ctx); in configure_handshake_ctx()
555 SSL_CTX_set_client_hello_cb(server_ctx, client_hello_reject_cb, server2_ctx); in configure_handshake_ctx()
558 SSL_CTX_set_client_hello_cb(server_ctx, client_hello_nov12_cb, server2_ctx); in configure_handshake_ctx()
565 SSL_CTX_set_tlsext_status_cb(server_ctx, server_ocsp_cb); in configure_handshake_ctx()
[all …]
Dhandshake_srp.c41 int configure_handshake_ctx_for_srp(SSL_CTX *server_ctx, SSL_CTX *server2_ctx, in configure_handshake_ctx_for_srp() argument
49 SSL_CTX_set_srp_username_callback(server_ctx, server_srp_cb); in configure_handshake_ctx_for_srp()
59 SSL_CTX_set_srp_cb_arg(server_ctx, server_ctx_data); in configure_handshake_ctx_for_srp()
Dhandshake.h86 HANDSHAKE_RESULT *do_handshake(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
91 int configure_handshake_ctx_for_srp(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs1346 let mut server_ctx = SslContext::builder(SslMethod::tls()).unwrap(); in stateless() localVariable
1347 server_ctx in stateless()
1350 server_ctx in stateless()
1354 server_ctx.set_stateless_cookie_generate_cb(|_tls, buf| { in stateless()
1358 server_ctx.set_stateless_cookie_verify_cb(|_tls, buf| buf == COOKIE); in stateless()
1360 SslStream::new(Ssl::new(&server_ctx.build()).unwrap(), MemoryStream::new()).unwrap(); in stateless()
/third_party/python/Lib/test/
Dtest_ssl.py1953 client_ctx, server_ctx, hostname = testing_context()
1959 server = server_ctx.wrap_bio(s_in, s_out, server_side=True)
3821 client_ctx, server_ctx, hostname = testing_context()
3825 server = server_ctx.wrap_socket(server, server_side=True)