diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-04-23 00:20:40 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-04-23 00:20:40 -0700 |
commit | ed85e20e4d6a27d5405f37366dd34b64c10a9211 (patch) | |
tree | 1dd34201f8777a4aba0ecbc39e8f480ba1407c41 /print-lane.c | |
parent | 595f1b5414c37b6ba31ed876343fd278a4c058ca (diff) | |
download | tcpdump-ed85e20e4d6a27d5405f37366dd34b64c10a9211.tar.gz |
u_intN_t is dead, long live uintN_t.
And, as we require at least autoconf 2.61, and as autoconf 2.61 and
later have AC_TYPE_UINTn_T and AC_TYPE_INTn_T macros, we use them to
define the uintN_t and intN_t macros if the system doesn't define them
for us.
This lets us get rid of bitypes.h as well.
Diffstat (limited to 'print-lane.c')
-rw-r--r-- | print-lane.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/print-lane.c b/print-lane.c index c8d919e1..c1e0b2e8 100644 --- a/print-lane.c +++ b/print-lane.c @@ -32,17 +32,17 @@ #include "ether.h" struct lecdatahdr_8023 { - u_int16_t le_header; - u_int8_t h_dest[ETHER_ADDR_LEN]; - u_int8_t h_source[ETHER_ADDR_LEN]; - u_int16_t h_type; + uint16_t le_header; + uint8_t h_dest[ETHER_ADDR_LEN]; + uint8_t h_source[ETHER_ADDR_LEN]; + uint16_t h_type; }; struct lane_controlhdr { - u_int16_t lec_header; - u_int8_t lec_proto; - u_int8_t lec_vers; - u_int16_t lec_opcode; + uint16_t lec_header; + uint8_t lec_proto; + uint8_t lec_vers; + uint16_t lec_opcode; }; static const struct tok lecop2str[] = { |