diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-08 06:50:25 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-08 06:50:25 +0000 |
commit | d9c080e0265d3557ac6fe2d2723cf4823eaa909f (patch) | |
tree | 422a747ed77f091d33ae234312450cc5cb2aa789 /sys/arch/sun3 | |
parent | bfa115c3a1f89cedeb913741469312347a52f8ee (diff) |
bring in KAME IPv6 code, dated 19991208.
replaces NRL IPv6 layer. reuses NRL pcb layer. no IPsec-on-v6 support.
see sys/netinet6/{TODO,IMPLEMENTATION} for more details.
GENERIC configuration should work fine as before. GENERIC.v6 works fine
as well, but you'll need KAME userland tools to play with IPv6 (will be
bringed into soon).
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r-- | sys/arch/sun3/sun3/isr.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/sun3/sun3/isr.c b/sys/arch/sun3/sun3/isr.c index 10ad3d52620..c052f1697f3 100644 --- a/sys/arch/sun3/sun3/isr.c +++ b/sys/arch/sun3/sun3/isr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isr.c,v 1.9 1999/05/24 23:09:08 jason Exp $ */ +/* $OpenBSD: isr.c,v 1.10 1999/12/08 06:50:17 itojun Exp $ */ /* $NetBSD: isr.c,v 1.25 1996/11/20 18:57:32 gwr Exp $ */ /*- @@ -101,6 +101,7 @@ isr_add_custom(level, handler) */ void arpintr __P((void)); void ipintr __P((void)); +void ip6intr __P((void)); void atintr __P((void)); void nsintr __P((void)); void clnlintr __P((void)); @@ -126,6 +127,10 @@ netintr() if (n & (1 << NETISR_IP)) ipintr(); #endif +#ifdef INET6 + if (n & (1 << NETISR_IPV6)) + ip6intr(); +#endif #ifdef NETATALK if (n & (1 << NETISR_ATALK)) atintr(); |