NetBSD/sys/modules/npf/Makefile
rmind 0621553d21 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.
2014-07-19 18:24:16 +00:00

21 lines
472 B
Makefile

# $NetBSD: Makefile,v 1.17 2014/07/19 18:24:17 rmind Exp $
#
# Public Domain.
#
.include "../Makefile.inc"
.PATH: ${S}/net/npf
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_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_sendpkt.c npf_worker.c
CPPFLAGS+= -DINET6
.include <bsd.kmodule.mk>