diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-05-19 13:55:18 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-05-19 13:55:18 +0000 |
commit | f34c7d14a89b27b4df6f5cc19e37610111d4b13a (patch) | |
tree | 5dfbe67baa80a3c150c71e6dee72584c11ee74bb /sys/netinet6/nd6.h | |
parent | 97039802230c5cefdc52198b3646885c774d9f21 (diff) |
never forward packet with link-local address.
experimental support for new loopback packet handling (with FAKE_LOOPBACK_IF,
rcvif will be set to real outgoing interface, not the loopback, to honor scope)
sync with kame.
Diffstat (limited to 'sys/netinet6/nd6.h')
-rw-r--r-- | sys/netinet6/nd6.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet6/nd6.h b/sys/netinet6/nd6.h index 6b35a91e2e7..49e5d0d9714 100644 --- a/sys/netinet6/nd6.h +++ b/sys/netinet6/nd6.h @@ -1,5 +1,5 @@ -/* $OpenBSD: nd6.h,v 1.6 2000/05/15 11:45:35 itojun Exp $ */ -/* $KAME: nd6.h,v 1.20 2000/04/29 04:46:41 jinmei Exp $ */ +/* $OpenBSD: nd6.h,v 1.7 2000/05/19 13:55:17 itojun Exp $ */ +/* $KAME: nd6.h,v 1.21 2000/05/17 12:35:59 jinmei Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -291,8 +291,8 @@ int nd6_ioctl __P((u_long, caddr_t, struct ifnet *)); struct rtentry *nd6_cache_lladdr __P((struct ifnet *, struct in6_addr *, char *, int, int, int)); /* for test */ -int nd6_output __P((struct ifnet *, struct mbuf *, struct sockaddr_in6 *, - struct rtentry *)); +int nd6_output __P((struct ifnet *, struct ifnet *, struct mbuf *, + struct sockaddr_in6 *, struct rtentry *)); int nd6_storelladdr __P((struct ifnet *, struct rtentry *, struct mbuf *, struct sockaddr *, u_char *)); |