diff options
author | 1997-07-23 20:50:14 +0000 | |
---|---|---|
committer | 1997-07-23 20:50:14 +0000 | |
commit | 8d907e26027671a869a520bec70c0088b48122ed (patch) | |
tree | 34cc552cd54a2c12fde9bec43587dc20e44f0dab | |
parent | define ETHERTYPE_IPX (diff) | |
download | wireguard-openbsd-8d907e26027671a869a520bec70c0088b48122ed.tar.xz wireguard-openbsd-8d907e26027671a869a520bec70c0088b48122ed.zip |
add atalk
-rw-r--r-- | sys/net/if_tun.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index 3c13a07fad9..fb2e6ba3823 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tun.c,v 1.15 1997/02/14 18:15:28 deraadt Exp $ */ +/* $OpenBSD: if_tun.c,v 1.16 1997/07/23 20:50:14 mickey Exp $ */ /* $NetBSD: if_tun.c,v 1.24 1996/05/07 02:40:48 thorpej Exp $ */ /* @@ -64,6 +64,11 @@ #include <netipx/ipx_if.h> #endif +#ifdef NETATALK +#include <netatalk/at.h> +#include <netatalk/at_var.h> +#endif + #ifdef ISO #include <netiso/iso.h> #include <netiso/iso_var.h> @@ -617,6 +622,12 @@ tunwrite(dev, uio, ioflag) isr = NETISR_IPX; break; #endif +#ifdef NETATALK + case AF_APPLETALK: + ifq = &atintrq2; + isr = NETISR_ATALK; + break; +#endif #ifdef ISO case AF_ISO: ifq = &clnlintrq; |