diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-11-09 03:12:02 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2002-11-09 03:12:02 +0000 |
commit | fe7d017c038fe17858d17f3ced510fd090ac2edf (patch) | |
tree | 7a5d17acfa76c10fe7143b67386503fe1a481120 | |
parent | 807670fcdfa502e7726320e85366bed9c9461bfe (diff) |
need icmp6.h for MULTICAST_PMTUD case. sync w/kame
-rw-r--r-- | sys/netinet6/ip6_mroute.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet6/ip6_mroute.c b/sys/netinet6/ip6_mroute.c index bb928b0358b..228b3334fb5 100644 --- a/sys/netinet6/ip6_mroute.c +++ b/sys/netinet6/ip6_mroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_mroute.c,v 1.29 2002/09/11 03:15:36 itojun Exp $ */ +/* $OpenBSD: ip6_mroute.c,v 1.30 2002/11/09 03:12:01 itojun Exp $ */ /* $KAME: ip6_mroute.c,v 1.45 2001/03/25 08:38:51 itojun Exp $ */ /* @@ -71,6 +71,9 @@ #include <netinet/in.h> #include <netinet/in_var.h> +#ifdef MULTICAST_PMTUD +#include <netinet/icmp6.h> +#endif #include <netinet/ip6.h> #include <netinet6/ip6_var.h> |