]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ipcomp.c
Allow tcpdump to work with earlier libpcaps.
[tcpdump] / print-ipcomp.c
index 70cf7aa0023a9dc1a0d6533c0a987dcb5128a2ee..56172ea181a07680e4864efb2996a89b534b0a35 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.6 2000-09-23 08:26:35 guy Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.12 2000-10-07 05:46:21 itojun Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -34,21 +34,10 @@ static const char rcsid[] =
 #include <sys/types.h>
 #include <sys/socket.h>
 
-#include <net/route.h>
-#include <net/if.h>
-
 #include <netinet/in.h>
-#include <netinet/in_systm.h>
-#include <netinet/ip.h>
-#include <netinet/ip_icmp.h>
-#include <netinet/ip_var.h>
 
 #include <stdio.h>
 
-#ifdef INET6
-#include <netinet/ip6.h>
-#endif
-
 struct ipcomp {
        u_int8_t comp_nxt;      /* Next Header */
        u_int8_t comp_flags;    /* Length of data, in 32bit */
@@ -75,7 +64,7 @@ ipcomp_print(register const u_char *bp, register const u_char *bp2, int *nhdr)
        ipcomp = (struct ipcomp *)bp;
        cpi = (u_int16_t)ntohs(ipcomp->comp_cpi);
 
-       /* 'ep' points to the end of avaible data. */
+       /* 'ep' points to the end of available data. */
        ep = snapend;
 
        if ((u_char *)(ipcomp + 1) >= ep - sizeof(struct ipcomp)) {