summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorguido <guido@FreeBSD.org>2000-02-23 20:11:57 +0000
committerguido <guido@FreeBSD.org>2000-02-23 20:11:57 +0000
commit8d05fe1c7c2f3eb0b5cd349936f4143fab3e16ad (patch)
treefeb5f49c94337c4f65bdc15f6c71d8a040c72112 /sys
parent4b6d76e5f83e0db152fadb126d7bd28660784690 (diff)
downloadFreeBSD-src-8d05fe1c7c2f3eb0b5cd349936f4143fab3e16ad.zip
FreeBSD-src-8d05fe1c7c2f3eb0b5cd349936f4143fab3e16ad.tar.gz
Remove option IPFILTER_KLD. In case you wanted to kldload ipfilter,
the module would only work in kernels built with this option. Approved by: jkh
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_input.c4
-rw-r--r--sys/netinet/ip_output.c9
2 files changed, 0 insertions, 13 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 26cfdc8..5d1bff3 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -180,9 +180,7 @@ int fw_enable = 1 ;
ip_dn_ctl_t *ip_dn_ctl_ptr;
#endif
-#if defined(IPFILTER_LKM) || defined(IPFILTER)
int (*fr_checkp) __P((struct ip *, int, struct ifnet *, int, struct mbuf **)) = NULL;
-#endif
/*
@@ -380,7 +378,6 @@ tooshort:
#if defined(IPFIREWALL) && defined(DUMMYNET)
iphack:
#endif
-#if defined(IPFILTER) || defined(IPFILTER_LKM)
/*
* Check if we want to allow this packet to be processed.
* Consider it to be bad if not.
@@ -392,7 +389,6 @@ iphack:
return;
ip = mtod(m = m1, struct ip *);
}
-#endif
if (fw_enable && ip_fw_chk_ptr) {
#ifdef IPFIREWALL_FORWARD
/*
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index 52350e3..d9867d2 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -105,12 +105,8 @@ static int ip_pcbopts __P((int, struct mbuf **, struct mbuf *));
static int ip_setmoptions
__P((struct sockopt *, struct ip_moptions **));
-#if defined(IPFILTER_LKM) || defined(IPFILTER)
int ip_optcopy __P((struct ip *, struct ip *));
extern int (*fr_checkp) __P((struct ip *, int, struct ifnet *, int, struct mbuf **));
-#else
-static int ip_optcopy __P((struct ip *, struct ip *));
-#endif
extern struct protosw inetsw[];
@@ -449,7 +445,6 @@ sendit:
* - Wrap: fake packet's addr/port <unimpl.>
* - Encapsulate: put it in another IP and send out. <unimp.>
*/
-#if defined(IPFILTER) || defined(IPFILTER_LKM)
if (fr_checkp) {
struct mbuf *m1 = m;
@@ -457,7 +452,6 @@ sendit:
goto done;
ip = mtod(m = m1, struct ip *);
}
-#endif
/*
* Check with the firewall...
@@ -958,9 +952,6 @@ ip_insertoptions(m, opt, phlen)
* Copy options from ip to jp,
* omitting those not copied during fragmentation.
*/
-#if !defined(IPFILTER) && !defined(IPFILTER_LKM)
-static
-#endif
int
ip_optcopy(ip, jp)
struct ip *ip, *jp;
OpenPOWER on IntegriCloud