Searched refs:v2_client_hello (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/ssl/ |
D | s3_srvr.c | 679 CBS v2_client_hello, cipher_specs, session_id, challenge; in ssl3_get_v2_client_hello() local 709 CBS_init(&v2_client_hello, (const uint8_t *)s->s3->sniff_buffer->data + 2, in ssl3_get_v2_client_hello() 714 if (!ssl3_finish_mac(s, CBS_data(&v2_client_hello), in ssl3_get_v2_client_hello() 715 CBS_len(&v2_client_hello))) { in ssl3_get_v2_client_hello() 719 s->msg_callback(0, SSL2_VERSION, 0, CBS_data(&v2_client_hello), in ssl3_get_v2_client_hello() 720 CBS_len(&v2_client_hello), s, s->msg_callback_arg); in ssl3_get_v2_client_hello() 723 if (!CBS_get_u8(&v2_client_hello, &msg_type) || in ssl3_get_v2_client_hello() 724 !CBS_get_u16(&v2_client_hello, &version) || in ssl3_get_v2_client_hello() 725 !CBS_get_u16(&v2_client_hello, &cipher_spec_length) || in ssl3_get_v2_client_hello() 726 !CBS_get_u16(&v2_client_hello, &session_id_length) || in ssl3_get_v2_client_hello() [all …]
|