• Home
  • Raw
  • Download

Lines Matching refs:serverssl

152     SSL *serverssl = NULL, *clientssl = NULL;  in test_dtls_drop_records()  local
167 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_drop_records()
169 || !TEST_true(create_ssl_connection(serverssl, clientssl, in test_dtls_drop_records()
175 SSL_shutdown(serverssl); in test_dtls_drop_records()
176 SSL_free(serverssl); in test_dtls_drop_records()
178 serverssl = clientssl = NULL; in test_dtls_drop_records()
195 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_drop_records()
205 DTLS_set_timer_cb(serverssl, timer_cb); in test_dtls_drop_records()
209 mempackbio = SSL_get_wbio(serverssl); in test_dtls_drop_records()
226 if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))) in test_dtls_drop_records()
240 SSL_free(serverssl); in test_dtls_drop_records()
267 SSL *serverssl = NULL, *clientssl = NULL; in test_cookie() local
280 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_cookie()
282 || !TEST_true(create_ssl_connection(serverssl, clientssl, in test_cookie()
288 SSL_free(serverssl); in test_cookie()
299 SSL *serverssl = NULL, *clientssl = NULL; in test_dtls_duplicate_records() local
308 if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl, in test_dtls_duplicate_records()
313 DTLS_set_timer_cb(serverssl, timer_cb); in test_dtls_duplicate_records()
316 BIO_ctrl(SSL_get_wbio(serverssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL); in test_dtls_duplicate_records()
318 if (!TEST_true(create_ssl_connection(serverssl, clientssl, SSL_ERROR_NONE))) in test_dtls_duplicate_records()
323 SSL_free(serverssl); in test_dtls_duplicate_records()