diff options
| author | rmind <rmind@NetBSD.org> | 2014-07-19 18:24:16 +0000 |
|---|---|---|
| committer | rmind <rmind@NetBSD.org> | 2014-07-19 18:24:16 +0000 |
| commit | c6d74635a1d93d95a3770bd621dcd83ed33100c2 (patch) | |
| tree | 6f26b84658f283610eb672c1c454cfad6a19f2cb /sys/modules | |
| parent | 5784df20e29d85c8a90aa4680c444d9baaa7fb9c (diff) | |
NPF: partially rewrite the connection tracking mechanism:
- Separate the tracking interface from the storage (state table)
and thus prepare to use a new data structure for the storage.
- Fix some race conditions in NAT association logic.
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/npf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/npf/Makefile b/sys/modules/npf/Makefile index aaad60e0a76..3cbc5c82034 100644 --- a/sys/modules/npf/Makefile +++ b/sys/modules/npf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2013/11/08 00:38:26 rmind Exp $ +# $NetBSD: Makefile,v 1.17 2014/07/19 18:24:17 rmind Exp $ # # Public Domain. # @@ -11,9 +11,9 @@ KMOD= npf 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_ruleset.c npf_conn.c npf_conndb.c npf_rproc.c SRCS+= npf_state.c npf_state_tcp.c npf_tableset.c -SRCS+= npf_tableset_ptree.c npf_worker.c +SRCS+= npf_tableset_ptree.c npf_sendpkt.c npf_worker.c CPPFLAGS+= -DINET6 |
