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-sunrpc.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-sunrpc.c')
-rw-r--r-- | print-sunrpc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print-sunrpc.c b/print-sunrpc.c index 998d88fd..54e32d86 100644 --- a/print-sunrpc.c +++ b/print-sunrpc.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-sunrpc.c,v 1.38 2000-10-03 02:55:01 itojun Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-sunrpc.c,v 1.39 2000-10-07 05:53:13 itojun Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -36,9 +36,6 @@ struct mbuf; struct rtentry; #include <netinet/in.h> -#ifdef INET6 -#include <netinet/ip6.h> -#endif #include <rpc/rpc.h> #ifdef HAVE_RPC_RPCENT_H @@ -55,6 +52,9 @@ struct rtentry; #include "addrtoname.h" #include "ip.h" +#ifdef INET6 +#include "ip6.h" +#endif static struct tok proc2str[] = { { PMAPPROC_NULL, "null" }, |