From a306c902b8a24b04a2ecece767f48182fc31be1a Mon Sep 17 00:00:00 2001 From: Max Laier Date: Wed, 16 Jun 2004 22:59:06 +0000 Subject: Prepare for pf 3.5 import: - Remove pflog and pfsync modules. Things will change in such a fashion that there will be one module with pf+pflog that can be loaded into GENERIC without problems (which is what most people want). pfsync is no longer possible as a module. - Add multicast address for in-kernel multicast pfsync protocol. Protocol glue will follow once the import is done. - Add one more mbuf tag --- sys/modules/Makefile | 4 ---- sys/modules/pflog/Makefile | 29 ----------------------------- sys/modules/pfsync/Makefile | 29 ----------------------------- 3 files changed, 62 deletions(-) delete mode 100644 sys/modules/pflog/Makefile delete mode 100644 sys/modules/pfsync/Makefile (limited to 'sys/modules') diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 73153f706af53..8c4fd23ddfb12 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -159,8 +159,6 @@ SUBDIR= ${_3dfx} \ pcn \ ${_pecoff} \ ${_pf} \ - ${_pflog} \ - ${_pfsync} \ plip \ ${_pmc} \ portalfs \ @@ -273,8 +271,6 @@ _ipfilter= ipfilter .if !defined(NO_PF) || defined(ALL_MODULES) _pf= pf -_pflog= pflog -_pfsync= pfsync .endif .if ${MACHINE_ARCH} == "i386" diff --git a/sys/modules/pflog/Makefile b/sys/modules/pflog/Makefile deleted file mode 100644 index 1eb46e976fe86..0000000000000 --- a/sys/modules/pflog/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# $FreeBSD$ - -.PATH: ${.CURDIR}/../../contrib/pf/net - -KMOD= pflog -SRCS = if_pflog.c \ - opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h - -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 - -opt_inet6.h: -.if defined(NOINET6) - echo > opt_inet6.h -.else - echo "#define INET6 1" > opt_inet6.h -.endif - -opt_bpf.h: - echo "#define DEV_BPF 1" > opt_bpf.h - -.include diff --git a/sys/modules/pfsync/Makefile b/sys/modules/pfsync/Makefile deleted file mode 100644 index 23f79e26c3506..0000000000000 --- a/sys/modules/pfsync/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# $FreeBSD$ - -.PATH: ${.CURDIR}/../../contrib/pf/net - -KMOD= pfsync -SRCS = if_pfsync.c \ - opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h - -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 - -opt_inet6.h: -.if defined(NOINET6) - echo > opt_inet6.h -.else - echo "#define INET6 1" > opt_inet6.h -.endif - -opt_bpf.h: - echo "#define DEV_BPF 1" > opt_bpf.h - -.include -- cgit v1.3