Lines Matching refs:clienthello

1250     if (s->clienthello != NULL)  in SSL_free()
1251 OPENSSL_free(s->clienthello->pre_proc_exts); in SSL_free()
1252 OPENSSL_free(s->clienthello); in SSL_free()
5398 if (s->clienthello == NULL) in SSL_client_hello_isv2()
5400 return s->clienthello->isv2; in SSL_client_hello_isv2()
5405 if (s->clienthello == NULL) in SSL_client_hello_get0_legacy_version()
5407 return s->clienthello->legacy_version; in SSL_client_hello_get0_legacy_version()
5412 if (s->clienthello == NULL) in SSL_client_hello_get0_random()
5415 *out = s->clienthello->random; in SSL_client_hello_get0_random()
5421 if (s->clienthello == NULL) in SSL_client_hello_get0_session_id()
5424 *out = s->clienthello->session_id; in SSL_client_hello_get0_session_id()
5425 return s->clienthello->session_id_len; in SSL_client_hello_get0_session_id()
5430 if (s->clienthello == NULL) in SSL_client_hello_get0_ciphers()
5433 *out = PACKET_data(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5434 return PACKET_remaining(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5439 if (s->clienthello == NULL) in SSL_client_hello_get0_compression_methods()
5442 *out = s->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
5443 return s->clienthello->compressions_len; in SSL_client_hello_get0_compression_methods()
5452 if (s->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
5454 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5455 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5468 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5469 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5490 if (s->clienthello == NULL) in SSL_client_hello_get0_ext()
5492 for (i = 0; i < s->clienthello->pre_proc_exts_len; ++i) { in SSL_client_hello_get0_ext()
5493 r = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get0_ext()