From owner-cvs-src-old@FreeBSD.ORG Sat Dec 5 12:52: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 4D5A2106568D for ; Sat, 5 Dec 2009 12:52: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 3AF4E8FC15 for ; Sat, 5 Dec 2009 12:52: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 nB5Cq5MX019893 for ; Sat, 5 Dec 2009 12:52:05 GMT (envelope-from luigi@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nB5Cq5qT019892 for cvs-src-old@freebsd.org; Sat, 5 Dec 2009 12:52:05 GMT (envelope-from luigi@repoman.freebsd.org) Message-Id: <200912051252.nB5Cq5qT019892@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to luigi@repoman.freebsd.org using -f From: Luigi Rizzo Date: Sat, 5 Dec 2009 12:51:51 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/netinet in.h ip_fw.h raw_ip.c 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: Sat, 05 Dec 2009 12:52:05 -0000 luigi 2009-12-05 12:51:51 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/netinet in.h ip_fw.h raw_ip.c sys/netinet/ipfw ip_fw2.c Log: SVN rev 200119 on 2009-12-05 12:51:51Z by luigi some simple MFC: r200020: change the type of the opcode from enum *:8 to u_int8_t so the size and alignment of the ipfw_insn is not compiler dependent. No changes in the code generated by gcc. r200023: Add new sockopt names for ipfw and dummynet. This commit is just grabbing entries for the new names that will be used in the future, so you don't need to rebuild anything now. r200034 Dispatch sockopt calls to ipfw and dummynet using the new option numbers, IP_FW3 and IP_DUMMYNET3. Right now the modules return an error if called with those arguments so there is no danger of unwanted behaviour. r200040 - initialize src_ip in the main loop to prevent a compiler warning (gcc 4.x under linux, not sure how real is the complaint). - rename a macro argument to prevent name clashes. - add the macro name on a couple of #endif - add a blank line for readability. Revision Changes Path 1.110.2.3 +8 -0 src/sys/netinet/in.h 1.132.2.3 +1 -1 src/sys/netinet/ip_fw.h 1.11.2.4 +8 -5 src/sys/netinet/ipfw/ip_fw2.c 1.220.2.4 +4 -0 src/sys/netinet/raw_ip.c