Home
last modified time | relevance | path

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

/xnu-10002.41.9/bsd/netinet6/
H A Dah.h45 u_int8_t ah_len; /* Length of data, in 32bit */ member
53 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.c231 if ((ah->ah_len << 2) - sizoff != siz1) { in ah4_input()
234 (ah->ah_len << 2) - sizoff, (u_int32_t)siz1, in ah4_input()
673 if ((ah->ah_len << 2) - sizoff != siz1) { in ah6_input()
676 (ah->ah_len << 2) - sizoff, (u_int32_t)siz1, in ah6_input()
H A Dah_core.c1407 totlen = (ah.ah_len + 2) << 2; in ah4_calccksum()