]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ipcomp.c
Add support for the Marvell Extended Distributed Switch Architecture header
[tcpdump] / print-ipcomp.c
index e5a38b6a52affce3c12189b668b8ce2be48baa0e..2504bfd9ae93511900f15130fe68f64e5c7930ce 100644 (file)
 #include <tcpdump-stdinc.h>
 
 struct ipcomp {
-       u_int8_t comp_nxt;      /* Next Header */
-       u_int8_t comp_flags;    /* Length of data, in 32bit */
-       u_int16_t comp_cpi;     /* Compression parameter index */
+       uint8_t comp_nxt;       /* Next Header */
+       uint8_t comp_flags;     /* Length of data, in 32bit */
+       uint16_t comp_cpi;      /* Compression parameter index */
 };
 
 #if defined(HAVE_LIBZ) && defined(HAVE_ZLIB_H)
 #include <zlib.h>
 #endif
 
-#include "netdissect.h"
+#include "interface.h"
 #include "extract.h"
 
 int
@@ -43,7 +43,7 @@ ipcomp_print(netdissect_options *ndo, register const u_char *bp, int *nhdr _U_)
 {
        register const struct ipcomp *ipcomp;
        register const u_char *ep;
-       u_int16_t cpi;
+       uint16_t cpi;
 #if defined(HAVE_LIBZ) && defined(HAVE_ZLIB_H)
        int advance;
 #endif