diff options
author | eivind <eivind@FreeBSD.org> | 1998-01-08 23:42:31 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-01-08 23:42:31 +0000 |
commit | bcae2312afcaa3b4fd34daac5baa64dbb82f57c5 (patch) | |
tree | fea007e0b2375970df63c0905adfbd464aaa0f74 /sys/net/if_tun.c | |
parent | c40850d5f4e14c6f1d76a0a345e6ba081a4ebd21 (diff) | |
download | FreeBSD-src-bcae2312afcaa3b4fd34daac5baa64dbb82f57c5.zip FreeBSD-src-bcae2312afcaa3b4fd34daac5baa64dbb82f57c5.tar.gz |
Make INET a proper option.
This will not make any of object files that LINT create change; there
might be differences with INET disabled, but hardly anything compiled
before without INET anyway. Now the 'obvious' things will give a
proper error if compiled without inet - ipx_ip, ipfw, tcp_debug. The
only thing that _should_ work (but can't be made to compile reasonably
easily) is sppp :-(
This commit move struct arpcom from <netinet/if_ether.h> to
<net/if_arp.h>.
Diffstat (limited to 'sys/net/if_tun.c')
-rw-r--r-- | sys/net/if_tun.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index c263d84..6d9318e 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -17,6 +17,8 @@ #include "tun.h" #if NTUN > 0 +#include "opt_inet.h" + #include <sys/param.h> #include <sys/proc.h> #include <sys/systm.h> @@ -233,7 +235,8 @@ tuninit(unit) microtime(&ifp->if_lastchange); for (ifa = ifp->if_addrhead.tqh_first; ifa; - ifa = ifa->ifa_link.tqe_next) + ifa = ifa->ifa_link.tqe_next) { +#ifdef INET if (ifa->ifa_addr->sa_family == AF_INET) { struct sockaddr_in *si; @@ -245,7 +248,8 @@ tuninit(unit) if (si && si->sin_addr.s_addr) tp->tun_flags |= TUN_DSTADDR; } - +#endif + } return 0; } @@ -574,6 +578,7 @@ tunwrite(dev, uio, flag) } #endif +#ifdef INET s = splimp(); if (IF_QFULL (&ipintrq)) { IF_DROP(&ipintrq); @@ -587,6 +592,7 @@ tunwrite(dev, uio, flag) ifp->if_ibytes += tlen; ifp->if_ipackets++; schednetisr(NETISR_IP); +#endif return error; } |