From owner-cvs-src@FreeBSD.ORG Sat Feb 28 13:50:51 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D8BB16A4CE; Sat, 28 Feb 2004 13:50:51 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E43E443D1F; Sat, 28 Feb 2004 13:50:50 -0800 (PST) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1SLooGe046953; Sat, 28 Feb 2004 13:50:50 -0800 (PST) (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1SLooYg046952; Sat, 28 Feb 2004 13:50:50 -0800 (PST) (envelope-from mlaier) Message-Id: <200402282150.i1SLooYg046952@repoman.freebsd.org> From: Max Laier Date: Sat, 28 Feb 2004 13:50:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile src/libexec/ftp-proxy Makefile src/sbin/pfctl Makefile src/sbin/pfctl/missing/altq altq.h altq_cbq.h altq_classq.h altq_hfsc.h altq_priq.h altq_red.h altq_rio.h altq_rmclass.h altq_rmclass_debug.h altq_var.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2004 21:50:51 -0000 mlaier 2004/02/28 13:50:50 PST FreeBSD src repository Modified files: include Makefile Added files: libexec/ftp-proxy Makefile sbin/pfctl Makefile sbin/pfctl/missing/altq altq.h altq_cbq.h altq_classq.h altq_hfsc.h altq_priq.h altq_red.h altq_rio.h altq_rmclass.h altq_rmclass_debug.h altq_var.h altq_wfq.h sbin/pflogd Makefile usr.sbin/authpf Makefile Log: Add skeleton build dirs for pf userland: libexec/ftp-proxy - ftp proxy for pf sbin/pfctl - equivalent to sbin/ipf sbin/pflogd - deamon logging packets via if_pflog in pcap format usr.sbin/authpf - authentification shell to modify pf rulesets Bring along some altq headers used to satisfy pfctl/authpf compile. This helps to keep the diff down and will make it easy to have a altq-patchset use the full powers of pf. Also make sure that the pf headers are installed. This does not link anything to the build. There will be a NO_PF switch for make.conf once pf userland is linked. Approved by: bms(mentor) Revision Changes Path 1.211 +8 -0 src/include/Makefile 1.1 +12 -0 src/libexec/ftp-proxy/Makefile (new) 1.1 +25 -0 src/sbin/pfctl/Makefile (new) 1.1 +204 -0 src/sbin/pfctl/missing/altq/altq.h (new) 1.1 +232 -0 src/sbin/pfctl/missing/altq/altq_cbq.h (new) 1.1 +207 -0 src/sbin/pfctl/missing/altq/altq_classq.h (new) 1.1 +325 -0 src/sbin/pfctl/missing/altq/altq_hfsc.h (new) 1.1 +172 -0 src/sbin/pfctl/missing/altq/altq_priq.h (new) 1.1 +199 -0 src/sbin/pfctl/missing/altq/altq_red.h (new) 1.1 +145 -0 src/sbin/pfctl/missing/altq/altq_rio.h (new) 1.1 +267 -0 src/sbin/pfctl/missing/altq/altq_rmclass.h (new) 1.1 +113 -0 src/sbin/pfctl/missing/altq/altq_rmclass_debug.h (new) 1.1 +267 -0 src/sbin/pfctl/missing/altq/altq_var.h (new) 1.1 +129 -0 src/sbin/pfctl/missing/altq/altq_wfq.h (new) 1.1 +13 -0 src/sbin/pflogd/Makefile (new) 1.1 +26 -0 src/usr.sbin/authpf/Makefile (new)