Lines Matching refs:clienthello
1209 if (s->clienthello != NULL) in SSL_free()
1210 OPENSSL_free(s->clienthello->pre_proc_exts); in SSL_free()
1211 OPENSSL_free(s->clienthello); in SSL_free()
5119 if (s->clienthello == NULL) in SSL_client_hello_isv2()
5121 return s->clienthello->isv2; in SSL_client_hello_isv2()
5126 if (s->clienthello == NULL) in SSL_client_hello_get0_legacy_version()
5128 return s->clienthello->legacy_version; in SSL_client_hello_get0_legacy_version()
5133 if (s->clienthello == NULL) in SSL_client_hello_get0_random()
5136 *out = s->clienthello->random; in SSL_client_hello_get0_random()
5142 if (s->clienthello == NULL) in SSL_client_hello_get0_session_id()
5145 *out = s->clienthello->session_id; in SSL_client_hello_get0_session_id()
5146 return s->clienthello->session_id_len; in SSL_client_hello_get0_session_id()
5151 if (s->clienthello == NULL) in SSL_client_hello_get0_ciphers()
5154 *out = PACKET_data(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5155 return PACKET_remaining(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5160 if (s->clienthello == NULL) in SSL_client_hello_get0_compression_methods()
5163 *out = s->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
5164 return s->clienthello->compressions_len; in SSL_client_hello_get0_compression_methods()
5173 if (s->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
5175 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5176 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5190 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5191 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5212 if (s->clienthello == NULL) in SSL_client_hello_get0_ext()
5214 for (i = 0; i < s->clienthello->pre_proc_exts_len; ++i) { in SSL_client_hello_get0_ext()
5215 r = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get0_ext()