Home
last modified time | relevance | path

Searched refs:ah_len (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.1.10/bsd/netinet6/
H A Dah.h50 u_int8_t ah_len; /* Length of data, in 32bit */ member
58 u_int8_t ah_len; /* Length of data + 1, in 32bit */ member
H A Dah_output.c282 ahdr->ah_len = (u_int8_t)(plen >> 2); in ah4_output()
293 ahdr->ah_len = (u_int8_t)((plen >> 2) + 1); /* plus one for seq# */ in ah4_output()
495 ahdr->ah_len = (u_int8_t)(plen >> 2); in ah6_output()
507 ahdr->ah_len = (u_int8_t)((plen >> 2) + 1); /* plus one for seq# */ in ah6_output()
H A Dah_input.c234 if ((ah->ah_len << 2) - sizoff != siz1) { in ah4_input()
237 (ah->ah_len << 2) - sizoff, (u_int32_t)siz1, in ah4_input()
680 if ((ah->ah_len << 2) - sizoff != siz1) { in ah6_input()
683 (ah->ah_len << 2) - sizoff, (u_int32_t)siz1, in ah6_input()
H A Dah_core.c710 totlen = (ah.ah_len + 2) << 2; in ah4_calccksum()