]> The Tcpdump Group git mirrors - tcpdump/blobdiff - ah.h
Update .gitignore for other configurations
[tcpdump] / ah.h
diff --git a/ah.h b/ah.h
index 5219e54ca6bc210be5906c734457e0b2735b08e8..90c5601008a2cb383e3e5e43f4c29e776af2ec57 100644 (file)
--- a/ah.h
+++ b/ah.h
 #define _NETINET6_AH_H_
 
 struct ah {
-       uint8_t ah_nxt;         /* Next Header */
-       uint8_t ah_len;         /* Length of data, in 32bit */
-       uint16_t        ah_reserve;     /* Reserved for future use */
-       uint32_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 {
-       uint8_t ah_nxt;         /* Next Header */
-       uint8_t ah_len;         /* Length of data + 1, in 32bit */
-       uint16_t        ah_reserve;     /* Reserved for future use */
-       uint32_t        ah_spi;         /* Security parameter index */
-       uint32_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 */
 };