Home | History | Annotate | Download | only in fuzz

Lines Matching refs:client

60     SSL *client;
72 /* This only fuzzes the initial flow from the client so far. */
75 client = SSL_new(ctx);
76 OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1);
77 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1);
78 SSL_set_tlsext_host_name(client, "localhost");
81 SSL_set_bio(client, in, out);
82 SSL_set_connect_state(client);
84 if (SSL_do_handshake(client) == 1) {
88 if (SSL_read(client, tmp, sizeof(tmp)) <= 0) {
93 SSL_free(client);