Lines Matching refs:clienthello
1460 if (s->clienthello != NULL) in ossl_ssl_connection_free()
1461 OPENSSL_free(s->clienthello->pre_proc_exts); in ossl_ssl_connection_free()
1462 OPENSSL_free(s->clienthello); in ossl_ssl_connection_free()
6652 if (sc->clienthello == NULL) in SSL_client_hello_isv2()
6654 return sc->clienthello->isv2; in SSL_client_hello_isv2()
6664 if (sc->clienthello == NULL) in SSL_client_hello_get0_legacy_version()
6666 return sc->clienthello->legacy_version; in SSL_client_hello_get0_legacy_version()
6676 if (sc->clienthello == NULL) in SSL_client_hello_get0_random()
6679 *out = sc->clienthello->random; in SSL_client_hello_get0_random()
6690 if (sc->clienthello == NULL) in SSL_client_hello_get0_session_id()
6693 *out = sc->clienthello->session_id; in SSL_client_hello_get0_session_id()
6694 return sc->clienthello->session_id_len; in SSL_client_hello_get0_session_id()
6704 if (sc->clienthello == NULL) in SSL_client_hello_get0_ciphers()
6707 *out = PACKET_data(&sc->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
6708 return PACKET_remaining(&sc->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
6718 if (sc->clienthello == NULL) in SSL_client_hello_get0_compression_methods()
6721 *out = sc->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
6722 return sc->clienthello->compressions_len; in SSL_client_hello_get0_compression_methods()
6735 if (sc->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
6737 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
6738 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
6749 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
6750 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
6774 if (sc->clienthello == NULL || num_exts == NULL) in SSL_client_hello_get_extension_order()
6776 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get_extension_order()
6777 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get_extension_order()
6791 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get_extension_order()
6792 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get_extension_order()
6813 if (sc->clienthello == NULL) in SSL_client_hello_get0_ext()
6815 for (i = 0; i < sc->clienthello->pre_proc_exts_len; ++i) { in SSL_client_hello_get0_ext()
6816 r = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get0_ext()