diff options
author | peter <peter@FreeBSD.org> | 1997-09-10 04:19:07 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-09-10 04:19:07 +0000 |
commit | 0ac36ed5fbdab698758e4adf724b179b8d24c6e4 (patch) | |
tree | 4e21779fa64eb98aceff71791be68c1e063c5775 /lkm | |
parent | 821f87d72dda1f5577146d38a90ab2a62589a3f4 (diff) | |
download | FreeBSD-src-0ac36ed5fbdab698758e4adf724b179b8d24c6e4.zip FreeBSD-src-0ac36ed5fbdab698758e4adf724b179b8d24c6e4.tar.gz |
Add example for IPFIREWALL_DEFAULT_TO_ACCEPT
Diffstat (limited to 'lkm')
-rw-r--r-- | lkm/ipfw/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lkm/ipfw/Makefile b/lkm/ipfw/Makefile index 812cc76..2afebe8 100644 --- a/lkm/ipfw/Makefile +++ b/lkm/ipfw/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.7 1997/02/22 12:48:14 peter Exp $ .PATH: ${.CURDIR}/../../sys/netinet KMOD= ipfw_mod @@ -10,5 +10,8 @@ CFLAGS+= -DIPFIREWALL -DIPFIREWALL_MODULE #CFLAGS+= -DIPFIREWALL_VERBOSE #CFLAGS+= -DIPFIREWALL_VERBOSE_LIMIT=100 # +#If you want it to pass all packets by default +#CFLAGS+= -DIPFIREWALL_DEFAULT_TO_ACCEPT +# .include <bsd.kmod.mk> |