]> The Tcpdump Group git mirrors - tcpdump/blobdiff - ah.h
The third argument to linkaddr_string is one of the LINKADDR_ enums.
[tcpdump] / ah.h
diff --git a/ah.h b/ah.h
index c22806afe8503e718b78e42ef4290329e6a902c5..90c5601008a2cb383e3e5e43f4c29e776af2ec57 100644 (file)
--- a/ah.h
+++ b/ah.h
 #define _NETINET6_AH_H_
 
 struct ah {
-       u_int8_t        ah_nxt;         /* Next Header */
-       u_int8_t        ah_len;         /* Length of data, in 32bit */
-       u_int16_t       ah_reserve;     /* Reserved for future use */
-       u_int32_t       ah_spi;         /* Security parameter index */
+       nd_uint8_t      ah_nxt;         /* Next Header */
+       nd_uint8_t      ah_len;         /* Length of data, in 32bit */
+       nd_uint16_t     ah_reserve;     /* Reserved for future use */
+       nd_uint32_t     ah_spi;         /* Security parameter index */
        /* variable size, 32bit bound*/ /* Authentication data */
 };
 
 struct newah {
-       u_int8_t        ah_nxt;         /* Next Header */
-       u_int8_t        ah_len;         /* Length of data + 1, in 32bit */
-       u_int16_t       ah_reserve;     /* Reserved for future use */
-       u_int32_t       ah_spi;         /* Security parameter index */
-       u_int32_t       ah_seq;         /* Sequence number field */
+       nd_uint8_t      ah_nxt;         /* Next Header */
+       nd_uint8_t      ah_len;         /* Length of data + 1, in 32bit */
+       nd_uint16_t     ah_reserve;     /* Reserved for future use */
+       nd_uint32_t     ah_spi;         /* Security parameter index */
+       nd_uint32_t     ah_seq;         /* Sequence number field */
        /* variable size, 32bit bound*/ /* Authentication data */
 };