X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/b9ac23ce92ca22483d56ee3192c54aa8f782f9ac..f5c79aedbe9c52dad10a196d805718f55a2be17a:/print-ipcomp.c diff --git a/print-ipcomp.c b/print-ipcomp.c index ba2987ae..56172ea1 100644 --- a/print-ipcomp.c +++ b/print-ipcomp.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] = - "@(#) /master/usr.sbin/tcpdump/tcpdump/print-icmp.c,v 2.1 1995/02/03 18:14:42 polk Exp (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ipcomp.c,v 1.12 2000-10-07 05:46:21 itojun Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -34,33 +34,15 @@ static const char rcsid[] = #include #include -#include -#include - #include -#include -#include -#include -#include -#include -#include -#include -#include #include -#ifdef INET6 -#include -#endif -#ifdef HAVE_NETINET6_IPCOMP_H -#include -#else 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 */ }; -#endif #if defined(HAVE_LIBZ) && defined(HAVE_ZLIB_H) #include @@ -82,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)) {