Lines Matching refs:clienthello
1457 if (s->clienthello != NULL) in ossl_ssl_connection_free()
1458 OPENSSL_free(s->clienthello->pre_proc_exts); in ossl_ssl_connection_free()
1459 OPENSSL_free(s->clienthello); in ossl_ssl_connection_free()
6647 if (sc->clienthello == NULL) in SSL_client_hello_isv2()
6649 return sc->clienthello->isv2; in SSL_client_hello_isv2()
6659 if (sc->clienthello == NULL) in SSL_client_hello_get0_legacy_version()
6661 return sc->clienthello->legacy_version; in SSL_client_hello_get0_legacy_version()
6671 if (sc->clienthello == NULL) in SSL_client_hello_get0_random()
6674 *out = sc->clienthello->random; in SSL_client_hello_get0_random()
6685 if (sc->clienthello == NULL) in SSL_client_hello_get0_session_id()
6688 *out = sc->clienthello->session_id; in SSL_client_hello_get0_session_id()
6689 return sc->clienthello->session_id_len; in SSL_client_hello_get0_session_id()
6699 if (sc->clienthello == NULL) in SSL_client_hello_get0_ciphers()
6702 *out = PACKET_data(&sc->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
6703 return PACKET_remaining(&sc->clienthello->ciphersuites); in SSL_client_hello_get0_ciphers()
6713 if (sc->clienthello == NULL) in SSL_client_hello_get0_compression_methods()
6716 *out = sc->clienthello->compressions; in SSL_client_hello_get0_compression_methods()
6717 return sc->clienthello->compressions_len; in SSL_client_hello_get0_compression_methods()
6730 if (sc->clienthello == NULL || out == NULL || outlen == NULL) in SSL_client_hello_get1_extensions_present()
6732 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
6733 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
6744 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get1_extensions_present()
6745 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get1_extensions_present()
6769 if (sc->clienthello == NULL || num_exts == NULL) in SSL_client_hello_get_extension_order()
6771 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get_extension_order()
6772 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get_extension_order()
6786 for (i = 0; i < sc->clienthello->pre_proc_exts_len; i++) { in SSL_client_hello_get_extension_order()
6787 ext = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get_extension_order()
6808 if (sc->clienthello == NULL) in SSL_client_hello_get0_ext()
6810 for (i = 0; i < sc->clienthello->pre_proc_exts_len; ++i) { in SSL_client_hello_get0_ext()
6811 r = sc->clienthello->pre_proc_exts + i; in SSL_client_hello_get0_ext()