diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-04-23 00:45:13 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-04-23 00:45:13 -0700 |
commit | dbddfda2c806a98b1fc8fd86cc3c34a4f9915d70 (patch) | |
tree | d15fd799819a42cba4161976b519dfcc513b7a24 /ah.h | |
parent | ed85e20e4d6a27d5405f37366dd34b64c10a9211 (diff) | |
download | tcpdump-dbddfda2c806a98b1fc8fd86cc3c34a4f9915d70.tar.gz |
More getting rid of old u_intN_t.
Diffstat (limited to 'ah.h')
-rw-r--r-- | ah.h | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -38,19 +38,19 @@ #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 */ + 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 */ /* 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 */ + 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 */ /* variable size, 32bit bound*/ /* Authentication data */ }; |