diff options
author | mlaier <mlaier@FreeBSD.org> | 2004-06-16 23:24:02 +0000 |
---|---|---|
committer | mlaier <mlaier@FreeBSD.org> | 2004-06-16 23:24:02 +0000 |
commit | 5eba7986748fd69671d135d7c2e6c08545799d55 (patch) | |
tree | 784e718bae8cf0d9b3a00c54f91661eb8aeee88f /sys/modules | |
parent | 27ecf76342d463232e4a49959506df6807d5e5b9 (diff) | |
download | FreeBSD-src-5eba7986748fd69671d135d7c2e6c08545799d55.zip FreeBSD-src-5eba7986748fd69671d135d7c2e6c08545799d55.tar.gz |
Commit pf version 3.5 and link additional files to the kernel build.
Version 3.5 brings:
- Atomic commits of ruleset changes (reduce the chance of ending up in an
inconsistent state).
- A 30% reduction in the size of state table entries.
- Source-tracking (limit number of clients and states per client).
- Sticky-address (the flexibility of round-robin with the benefits of
source-hash).
- Significant improvements to interface handling.
- and many more ...
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/pf/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/modules/pf/Makefile b/sys/modules/pf/Makefile index 3968f47..a226f1c 100644 --- a/sys/modules/pf/Makefile +++ b/sys/modules/pf/Makefile @@ -2,10 +2,12 @@ .PATH: ${.CURDIR}/../../contrib/pf/net .PATH: ${.CURDIR}/../../contrib/pf/netinet +.PATH: ${.CURDIR}/../../netinet KMOD= pf -SRCS = pf.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \ - in4_cksum.c \ +SRCS = pf.c pf_if.c pf_subr.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \ + if_pflog.c \ + in4_cksum.c ip_id.c \ opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h opt_random_ip_id.h CFLAGS+= -Wall -I${.CURDIR}/../../contrib/pf @@ -13,7 +15,6 @@ CFLAGS+= -Wall -I${.CURDIR}/../../contrib/pf opt_pf.h: echo "#define DEV_PF 1" > opt_pf.h echo "#define DEV_PFLOG 1" >> opt_pf.h - echo "#define DEV_PFSYNC 1" >> opt_pf.h opt_inet.h: echo "#define INET 1" > opt_inet.h |