diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-06-20 20:51:27 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-06-20 20:51:27 +0000 |
commit | 988e2eb8b0a903861b611d430d462f2c9eda782c (patch) | |
tree | 4501df48ff7b3cb971fed52b9ad59038b0a40176 /sys | |
parent | ec84bc86269648a737b586949790be115abfc681 (diff) |
confirmed interop of IPv6 AH with KAME (both global and scoped addr).
remove restriction on scoped IPv6 address.
TODO: confirm it with other IPv6 AH implementation. since we use very
similar logic between KAME IPv6 AH and OpenBSD IPv6 AH, it is possible that
both side is making the same mistake or whatever
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet6/ip6_output.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index 1f644bf364e..9adc9785508 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_output.c,v 1.12 2000/06/20 01:27:24 itojun Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.13 2000/06/20 20:51:26 itojun Exp $ */ /* $KAME: ip6_output.c,v 1.112 2000/06/18 01:50:39 itojun Exp $ */ /* @@ -294,13 +294,6 @@ ip6_output(m0, opt, ro, flags, im6o, ifpp) error = EHOSTUNREACH; goto freehdrs; } - - /* scoped address is not supported */ - if (IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_src) || - IN6_IS_SCOPE_LINKLOCAL(&ip6->ip6_dst)) { - error = EHOSTUNREACH; - goto freehdrs; - } #endif } |