Lines Matching refs:cssl
246 SSL *sssl = NULL, *cssl = NULL; in test_tls13ccs() local
303 if (!TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, NULL, NULL)) in test_tls13ccs()
304 || !TEST_true(create_ssl_connection(sssl, cssl, SSL_ERROR_NONE))) in test_tls13ccs()
306 sess = SSL_get1_session(cssl); in test_tls13ccs()
309 SSL_shutdown(cssl); in test_tls13ccs()
312 SSL_free(cssl); in test_tls13ccs()
313 sssl = cssl = NULL; in test_tls13ccs()
332 if (!TEST_true(create_ssl_objects(sctx, cctx, &sssl, &cssl, s_to_c_fbio, in test_tls13ccs()
338 if (!TEST_true(SSL_set_session(cssl, sess)) in test_tls13ccs()
339 || !TEST_true(SSL_write_early_data(cssl, msg, strlen(msg), in test_tls13ccs()
347 if (!TEST_int_gt(SSL_connect(cssl), 0)) in test_tls13ccs()
350 if (!TEST_int_le(SSL_connect(cssl), 0)) in test_tls13ccs()
360 if (!TEST_true(create_ssl_connection(sssl, cssl, SSL_ERROR_NONE))) in test_tls13ccs()
477 SSL_free(cssl); in test_tls13ccs()