From owner-cvs-src@FreeBSD.ORG Sat Jun 28 09:12:14 2003 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 E321837B401; Sat, 28 Jun 2003 09:12:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CDE443FA3; Sat, 28 Jun 2003 09:12:14 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h5SGCE0U093033; Sat, 28 Jun 2003 09:12:14 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5SGCEfH093032; Sat, 28 Jun 2003 09:12:14 -0700 (PDT) Message-Id: <200306281612.h5SGCEfH093032@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 28 Jun 2003 09:12:14 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw2.c src/sys/netinet ip_dummynet.c ip_fw2.c ip_fw2.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 Jun 2003 16:12:15 -0000 luigi 2003/06/28 09:12:14 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sbin/ipfw ipfw.8 ipfw2.c sys/netinet ip_dummynet.c ip_fw2.c ip_fw2.h Log: MFC: sync ipfw2 (kernel, userland, manpage) with the version in -current. Among other things, this includes the following: + pass to the preprocessor all command-line options after -p (except the last one, the ruleset file) + add the "verrevpath" option + support strong alignment architectures such as alpha and sparc64; + support multiple values and ranges for "iplen", "ipttl", "ipid" options. + support range notations such as 1.2.3.4/24{5,6,7,10-20,60-90} for sets of IP addresses The changes (also those in sys/netinet/ip_dummynet.c) are all IPFW2-specific, which is entirely optional in RELENG_4 so there are no ABI issues for those using the standard ipfw[1]. Note, however, that ipfw2 users MUST REBUILD /sbin/ipfw together with the new kernel. Revision Changes Path 1.63.2.35 +67 -18 src/sbin/ipfw/ipfw.8 1.4.2.15 +148 -51 src/sbin/ipfw/ipfw2.c 1.24.2.24 +9 -1 src/sys/netinet/ip_dummynet.c 1.6.2.15 +94 -23 src/sys/netinet/ip_fw2.c 1.1.2.3 +15 -5 src/sys/netinet/ip_fw2.h