Home | History | Annotate | Download | only in fuzz

Lines Matching defs:client

63     SSL *client = NULL;
71 /* This only fuzzes the initial flow from the client so far. */
76 client = SSL_new(ctx);
77 if (client == NULL)
79 OPENSSL_assert(SSL_set_min_proto_version(client, 0) == 1);
80 OPENSSL_assert(SSL_set_cipher_list(client, "ALL:eNULL:@SECLEVEL=0") == 1);
81 SSL_set_tlsext_host_name(client, "localhost");
90 SSL_set_bio(client, in, out);
91 SSL_set_connect_state(client);
93 if (SSL_do_handshake(client) == 1) {
97 if (SSL_read(client, tmp, sizeof(tmp)) <= 0) {
103 SSL_free(client);