Lines Matching refs:clienthello

1237     if (s->clienthello != NULL)  in SSL_free()
1238 OPENSSL_free(s->clienthello->pre_proc_exts); in SSL_free()
1239 OPENSSL_free(s->clienthello); in SSL_free()
5316 if (s->clienthello == NULL) in SSL_client_hello_isv2()
5318 return s->clienthello->isv2; in SSL_client_hello_isv2()
5323 if (s->clienthello == NULL) in SSL_client_hello_get0_legacy_version()
5325 return s->clienthello->legacy_version; in SSL_client_hello_get0_legacy_version()
5330 if (s->clienthello == NULL) in SSL_client_hello_get0_random()
5333 *out = s->clienthello->random; in SSL_client_hello_get0_random()
5339 if (s->clienthello == NULL) in SSL_client_hello_get0_session_id()
5342 *out = s->clienthello->session_id; in SSL_client_hello_get0_session_id()
5343 return s->clienthello->session_id_len; in SSL_client_hello_get0_session_id()
5348 if (s->clienthello == NULL) in SSL_client_hello_get0_ciphers()
5351 *out = PACKET_data(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5352 return PACKET_remaining(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5357 if (s->clienthello == NULL) in SSL_client_hello_get0_compression_methods()
5360 *out = s->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
5361 return s->clienthello->compressions_len; in SSL_client_hello_get0_compression_methods()
5370 if (s->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
5372 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5373 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5386 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5387 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5408 if (s->clienthello == NULL) in SSL_client_hello_get0_ext()
5410 for (i = 0; i < s->clienthello->pre_proc_exts_len; ++i) { in SSL_client_hello_get0_ext()
5411 r = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get0_ext()