From owner-cvs-src-old@FreeBSD.ORG Tue Dec 15 09:50:05 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E85CB1065670 for ; Tue, 15 Dec 2009 09:50:05 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D65678FC13 for ; Tue, 15 Dec 2009 09:50:05 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nBF9o5jv068585 for ; Tue, 15 Dec 2009 09:50:05 GMT (envelope-from luigi@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nBF9o5kv068583 for cvs-src-old@freebsd.org; Tue, 15 Dec 2009 09:50:05 GMT (envelope-from luigi@repoman.freebsd.org) Message-Id: <200912150950.nBF9o5kv068583@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to luigi@repoman.freebsd.org using -f From: Luigi Rizzo Date: Tue, 15 Dec 2009 09:46:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw2.c ipfw2.h src/sys/netinet/ipfw ip_fw2.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Dec 2009 09:50:06 -0000 luigi 2009-12-15 09:46:27 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 ipfw2.c ipfw2.h sys/netinet/ipfw ip_fw2.c Log: SVN rev 200567 on 2009-12-15 09:46:27Z by luigi implement a new match option, lookup {dst-ip|src-ip|dst-port|src-port|uid|jail} N which searches the specified field in table N and sets tablearg accordingly. With dst-ip or src-ip the option replicates two existing options. When used with other arguments, the option can be useful to quickly dispatch traffic based on other fields. Work supported by the Onelab project. MFC after: 1 week Revision Changes Path 1.234 +14 -0 src/sbin/ipfw/ipfw.8 1.151 +45 -0 src/sbin/ipfw/ipfw2.c 1.10 +1 -0 src/sbin/ipfw/ipfw2.h 1.25 +31 -0 src/sys/netinet/ipfw/ip_fw2.c