Lines Matching refs:clienthello
1215 if (s->clienthello != NULL) in SSL_free()
1216 OPENSSL_free(s->clienthello->pre_proc_exts); in SSL_free()
1217 OPENSSL_free(s->clienthello); in SSL_free()
5232 if (s->clienthello == NULL) in SSL_client_hello_isv2()
5234 return s->clienthello->isv2; in SSL_client_hello_isv2()
5239 if (s->clienthello == NULL) in SSL_client_hello_get0_legacy_version()
5241 return s->clienthello->legacy_version; in SSL_client_hello_get0_legacy_version()
5246 if (s->clienthello == NULL) in SSL_client_hello_get0_random()
5249 *out = s->clienthello->random; in SSL_client_hello_get0_random()
5255 if (s->clienthello == NULL) in SSL_client_hello_get0_session_id()
5258 *out = s->clienthello->session_id; in SSL_client_hello_get0_session_id()
5259 return s->clienthello->session_id_len; in SSL_client_hello_get0_session_id()
5264 if (s->clienthello == NULL) in SSL_client_hello_get0_ciphers()
5267 *out = PACKET_data(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5268 return PACKET_remaining(&s->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
5273 if (s->clienthello == NULL) in SSL_client_hello_get0_compression_methods()
5276 *out = s->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
5277 return s->clienthello->compressions_len; in SSL_client_hello_get0_compression_methods()
5286 if (s->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
5288 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5289 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5303 for (i = 0; i < s->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
5304 ext = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
5325 if (s->clienthello == NULL) in SSL_client_hello_get0_ext()
5327 for (i = 0; i < s->clienthello->pre_proc_exts_len; ++i) { in SSL_client_hello_get0_ext()
5328 r = s->clienthello->pre_proc_exts + i; in SSL_client_hello_get0_ext()