Lines Matching defs:ah
1 /* NetBSD: print-ah.c,v 1.4 1996/05/20 00:41:16 fvdl Exp */
26 __RCSID("$NetBSD: print-ah.c,v 1.9 2024/09/02 16:15:30 christos Exp $");
38 #include "ah.h"
43 const struct ah *ah;
49 ndo->ndo_protocol = "ah";
50 ah = (const struct ah *)bp;
58 * This 8-bit field specifies the length of AH in 32-bit words (4-byte
61 ah_len = GET_U_1(ah->ah_len);
67 reserved = GET_BE_U_2(ah->ah_reserved);
70 ND_PRINT("spi=0x%08x,", GET_BE_U_4(ah->ah_spi));
71 ND_PRINT("seq=0x%x,", GET_BE_U_4(ah->ah_seq));
73 for (p = (const u_char *)(ah + 1); p < bp + ah_hdr_len; p++)