Home
last modified time | relevance | path

Searched refs:out_hdr (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/ssl/
Dd1_both.c476 int dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr, in dtls1_parse_fragment() argument
478 OPENSSL_memset(out_hdr, 0x00, sizeof(struct hm_header_st)); in dtls1_parse_fragment()
480 if (!CBS_get_u8(cbs, &out_hdr->type) || in dtls1_parse_fragment()
481 !CBS_get_u24(cbs, &out_hdr->msg_len) || in dtls1_parse_fragment()
482 !CBS_get_u16(cbs, &out_hdr->seq) || in dtls1_parse_fragment()
483 !CBS_get_u24(cbs, &out_hdr->frag_off) || in dtls1_parse_fragment()
484 !CBS_get_u24(cbs, &out_hdr->frag_len) || in dtls1_parse_fragment()
485 !CBS_get_bytes(cbs, out_body, out_hdr->frag_len)) { in dtls1_parse_fragment()
Dinternal.h2134 int dtls1_parse_fragment(CBS *cbs, struct hm_header_st *out_hdr, in OPENSSL_MSVC_PRAGMA()