Searched refs:out_hdr (Results 1 – 2 of 2) sorted by relevance
/external/boringssl/src/ssl/ |
D | d1_both.cc | 459 bool dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr, in dtls1_parse_fragment() argument 461 OPENSSL_memset(out_hdr, 0x00, sizeof(struct hm_header_st)); in dtls1_parse_fragment() 463 if (!CBS_get_u8(cbs, &out_hdr->type) || in dtls1_parse_fragment() 464 !CBS_get_u24(cbs, &out_hdr->msg_len) || in dtls1_parse_fragment() 465 !CBS_get_u16(cbs, &out_hdr->seq) || in dtls1_parse_fragment() 466 !CBS_get_u24(cbs, &out_hdr->frag_off) || in dtls1_parse_fragment() 467 !CBS_get_u24(cbs, &out_hdr->frag_len) || in dtls1_parse_fragment() 468 !CBS_get_bytes(cbs, out_body, out_hdr->frag_len)) { in dtls1_parse_fragment()
|
D | internal.h | 2732 bool dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr,
|