Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl.old/dist/test/
H A Dsslapitest.c6830 SSL *clientssl = NULL, *serverssl = NULL, *client2ssl = NULL; in test_ssl_dup() local
6849 client2ssl = SSL_dup(clientssl); in test_ssl_dup()
6854 SSL_set0_rbio(client2ssl, rbio); in test_ssl_dup()
6860 SSL_set0_wbio(client2ssl, wbio); in test_ssl_dup()
6863 if (!TEST_ptr(client2ssl) in test_ssl_dup()
6865 || !TEST_ptr_ne(clientssl, client2ssl)) in test_ssl_dup()
6868 if (!TEST_int_eq(SSL_get_min_proto_version(client2ssl), TLS1_2_VERSION) in test_ssl_dup()
6869 || !TEST_int_eq(SSL_get_max_proto_version(client2ssl), TLS1_2_VERSION)) in test_ssl_dup()
6872 if (!TEST_true(create_ssl_connection(serverssl, client2ssl, SSL_ERROR_NONE))) in test_ssl_dup()
6876 clientssl = SSL_dup(client2ssl); in test_ssl_dup()
[all …]