Searched refs:client2ssl (Results 1 – 1 of 1) sorted by relevance
| /freebsd/crypto/openssl/test/ |
| H A D | sslapitest.c | 10842 SSL *clientssl = NULL, *serverssl = NULL, *client2ssl = NULL; in test_ssl_dup() local 10884 client2ssl = SSL_dup(clientssl); in test_ssl_dup() 10889 SSL_set0_rbio(client2ssl, rbio); in test_ssl_dup() 10895 SSL_set0_wbio(client2ssl, wbio); in test_ssl_dup() 10898 if (!TEST_ptr(client2ssl) in test_ssl_dup() 10900 || !TEST_ptr_ne(clientssl, client2ssl)) in test_ssl_dup() 10903 if (!TEST_int_eq(SSL_get_min_proto_version(client2ssl), TLS1_2_VERSION) in test_ssl_dup() 10904 || !TEST_int_eq(SSL_get_max_proto_version(client2ssl), TLS1_2_VERSION)) in test_ssl_dup() 10907 if (!TEST_true(create_ssl_connection(serverssl, client2ssl, SSL_ERROR_NONE))) in test_ssl_dup() 10910 if (!TEST_true(SSL_get0_client_cert_type(client2ssl, &ctype, &ctype_len))) in test_ssl_dup() [all …]
|