Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/test/
H A Dsslapitest.c10484 SSL *clientssl = NULL, *serverssl = NULL, *client2ssl = NULL; in test_ssl_dup() local
10503 client2ssl = SSL_dup(clientssl); in test_ssl_dup()
10508 SSL_set0_rbio(client2ssl, rbio); in test_ssl_dup()
10514 SSL_set0_wbio(client2ssl, wbio); in test_ssl_dup()
10517 if (!TEST_ptr(client2ssl) in test_ssl_dup()
10519 || !TEST_ptr_ne(clientssl, client2ssl)) in test_ssl_dup()
10522 if (!TEST_int_eq(SSL_get_min_proto_version(client2ssl), TLS1_2_VERSION) in test_ssl_dup()
10523 || !TEST_int_eq(SSL_get_max_proto_version(client2ssl), TLS1_2_VERSION)) in test_ssl_dup()
10526 if (!TEST_true(create_ssl_connection(serverssl, client2ssl, SSL_ERROR_NONE))) in test_ssl_dup()
10530 clientssl = SSL_dup(client2ssl); in test_ssl_dup()
[all …]