From owner-cvs-src@FreeBSD.ORG Wed Feb 1 13:55:03 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 DF2C116A420; Wed, 1 Feb 2006 13:55:03 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B29B743D53; Wed, 1 Feb 2006 13:55:03 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k11Dt3qi066504; Wed, 1 Feb 2006 13:55:03 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k11Dt3d3066503; Wed, 1 Feb 2006 13:55:03 GMT (envelope-from andre) Message-Id: <200602011355.k11Dt3d3066503@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 1 Feb 2006 13:55:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files src/sys/netinet ip_input.c ip_ipsec.c ip_ipsec.h ip_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 01 Feb 2006 13:55:04 -0000 andre 2006-02-01 13:55:03 UTC FreeBSD src repository Modified files: sys/conf files sys/netinet ip_input.c ip_output.c Added files: sys/netinet ip_ipsec.c ip_ipsec.h Log: Move the IPSEC related code blocks to their own file to unclutter and signifincantly improve the readability of ip_input() and ip_output() again. The resulting IPSEC hooks in ip_input() and ip_output() may be used later on for making IPSEC loadable. This move is mostly mechanical and should preserve current IPSEC behaviour as-is. Nothing shall prevent improvements in the way IPSEC interacts with the IPv4 stack. Discussed with: bz, gnn, rwatson; (earlier version) Revision Changes Path 1.1091 +2 -0 src/sys/conf/files 1.313 +15 -165 src/sys/netinet/ip_input.c 1.1 +579 -0 src/sys/netinet/ip_ipsec.c (new) 1.1 +42 -0 src/sys/netinet/ip_ipsec.h (new) 1.254 +17 -280 src/sys/netinet/ip_output.c