diff options
author | itojun <itojun> | 2000-10-07 05:53:09 +0000 |
---|---|---|
committer | itojun <itojun> | 2000-10-07 05:53:09 +0000 |
commit | ce132b307b6f895a3c591b7150dcad88ac6c0245 (patch) | |
tree | 7d0402c9e8c1bdad643c972da1071388f84d54e6 /print-null.c | |
parent | 8f5ebe04d098b79bdf3c6184cfc0a7f0f3f5559b (diff) | |
download | tcpdump-ce132b307b6f895a3c591b7150dcad88ac6c0245.tar.gz |
put stripped-down version of ip6.h and icmp6.h into tcpdump tree.
ip6.h is almost normal RFC2292 header.
icmp6.h has couple of extensions (not covered by RFC2292),
like MLD, ICMPv6 nodeinfo, and router renumber.
XXX how to synchronize with future kame changes?
Diffstat (limited to 'print-null.c')
-rw-r--r-- | print-null.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/print-null.c b/print-null.c index 37adb4f0..8e43bb5d 100644 --- a/print-null.c +++ b/print-null.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-null.c,v 1.37 2000-10-03 02:55:00 itojun Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-null.c,v 1.38 2000-10-07 05:53:13 itojun Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -43,14 +43,13 @@ struct rtentry; #include <stdio.h> #include <string.h> -#ifdef INET6 -#include <netinet/ip6.h> -#endif - #include "interface.h" #include "addrtoname.h" #include "ip.h" +#ifdef INET6 +#include "ip6.h" +#endif #ifndef AF_NS #define AF_NS 6 /* XEROX NS protocols */ |