diff options
author | Kjell Wooding <kjell@cvs.openbsd.org> | 1999-12-16 07:38:46 +0000 |
---|---|---|
committer | Kjell Wooding <kjell@cvs.openbsd.org> | 1999-12-16 07:38:46 +0000 |
commit | 4f440c694f2d8c97f3ea6413d87298acf9dede02 (patch) | |
tree | 2de13d91a5cc205cd9adb0c66b417e8d05904689 /sbin/ipfstat/Makefile | |
parent | e5dff6f25f2c2c0db9a353f6ae9c9b19adc5b953 (diff) |
Add the ability to use interface names in place of addresses
in firewall rules. i.e.
block return-rst in quick on fxp0 proto tcp from any to fxp0 port = 9999
This will make things like DHCP much easier to deal with in the future.
Diffstat (limited to 'sbin/ipfstat/Makefile')
-rw-r--r-- | sbin/ipfstat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipfstat/Makefile b/sbin/ipfstat/Makefile index c8373343d9f..ab29321d47e 100644 --- a/sbin/ipfstat/Makefile +++ b/sbin/ipfstat/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.5 1999/12/15 05:20:25 kjell Exp $ +# $OpenBSD: Makefile,v 1.6 1999/12/16 07:38:45 kjell Exp $ PROG= ipfstat MAN= ipfstat.8 -SRCS= fils.c parse.c opt.c kmem.c facpri.c +SRCS= fils.c parse.c opt.c kmem.c facpri.c ifaddr.c .PATH: ${.CURDIR}/../../sbin/ipf CFLAGS+=-I${.CURDIR}/../../sbin/ipf |