Lines Matching refs:srvr_ssl
51 SSL *srvr_ssl = NULL, *clnt_ssl = NULL; in mtu_test() local
62 if (!TEST_true(create_ssl_objects(ctx, ctx, &srvr_ssl, &clnt_ssl, in mtu_test()
67 SSL_set_options(srvr_ssl, SSL_OP_NO_ENCRYPT_THEN_MAC); in mtu_test()
69 if (!TEST_true(SSL_set_cipher_list(srvr_ssl, cs)) in mtu_test()
71 || !TEST_ptr(sc_bio = SSL_get_rbio(srvr_ssl)) in mtu_test()
72 || !TEST_true(create_ssl_connection(clnt_ssl, srvr_ssl, in mtu_test()
143 SSL_free(srvr_ssl); in mtu_test()
197 SSL *srvr_ssl = NULL, *clnt_ssl = NULL; in test_server_mtu_larger_than_max_fragment_length() local
211 if (!TEST_true(create_ssl_objects(ctx, ctx, &srvr_ssl, &clnt_ssl, in test_server_mtu_larger_than_max_fragment_length()
215 SSL_set_options(srvr_ssl, SSL_OP_NO_QUERY_MTU); in test_server_mtu_larger_than_max_fragment_length()
216 if (!TEST_true(DTLS_set_link_mtu(srvr_ssl, 1500))) in test_server_mtu_larger_than_max_fragment_length()
222 if (!TEST_true(create_ssl_connection(srvr_ssl, clnt_ssl, in test_server_mtu_larger_than_max_fragment_length()
230 SSL_free(srvr_ssl); in test_server_mtu_larger_than_max_fragment_length()