diff options
| author | rmind <rmind@NetBSD.org> | 2013-11-08 00:38:26 +0000 |
|---|---|---|
| committer | rmind <rmind@NetBSD.org> | 2013-11-08 00:38:26 +0000 |
| commit | d1d2e2c9b05cd0a6ff3487f2022ff26ecb24a91d (patch) | |
| tree | f67e712c15e878d250a44ab2480e3cf6ef308cf8 /sys/modules/npf | |
| parent | 7c6db3061bd13e1d209c3f71f8e23ff03365f80a (diff) | |
NPF: add support for specifying the interfaces before they are attached.
If an interface is or gets detached, all associated rules and connections
will be deactivated (it might be useful to have an option to invalidate
the associated connections). Once the interface is reattached they will
become active.
Bump NPF_VERSION.
Diffstat (limited to 'sys/modules/npf')
| -rw-r--r-- | sys/modules/npf/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/modules/npf/Makefile b/sys/modules/npf/Makefile index 35f642a85f8..aaad60e0a76 100644 --- a/sys/modules/npf/Makefile +++ b/sys/modules/npf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2013/09/19 01:49:07 rmind Exp $ +# $NetBSD: Makefile,v 1.16 2013/11/08 00:38:26 rmind Exp $ # # Public Domain. # @@ -9,10 +9,11 @@ KMOD= npf -SRCS= npf.c npf_alg.c npf_conf.c npf_ctl.c npf_handler.c npf_bpf.c -SRCS+= npf_inet.c npf_mbuf.c npf_nat.c npf_ruleset.c npf_rproc.c -SRCS+= npf_sendpkt.c npf_session.c npf_state.c npf_state_tcp.c -SRCS+= npf_tableset.c npf_tableset_ptree.c npf_worker.c +SRCS= npf.c npf_alg.c npf_conf.c npf_ctl.c npf_handler.c +SRCS+= npf_bpf.c npf_if.c npf_inet.c npf_mbuf.c npf_nat.c +SRCS+= npf_ruleset.c npf_rproc.c npf_sendpkt.c npf_session.c +SRCS+= npf_state.c npf_state_tcp.c npf_tableset.c +SRCS+= npf_tableset_ptree.c npf_worker.c CPPFLAGS+= -DINET6 |
