From owner-cvs-all@FreeBSD.ORG Wed Dec 28 20:36:56 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0C6416A41F; Wed, 28 Dec 2005 20:36:56 +0000 (GMT) (envelope-from kbyanc@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2428643D4C; Wed, 28 Dec 2005 20:36:56 +0000 (GMT) (envelope-from kbyanc@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 jBSKatQk066014; Wed, 28 Dec 2005 20:36:55 GMT (envelope-from kbyanc@repoman.freebsd.org) Received: (from kbyanc@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id jBSKatjp066013; Wed, 28 Dec 2005 20:36:55 GMT (envelope-from kbyanc) Message-Id: <200512282036.jBSKatjp066013@repoman.freebsd.org> From: Kelly Yancey Date: Wed, 28 Dec 2005 20:36:55 +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/usr.bin/netstat Makefile ipsec.c main.c netstat.h pfkey.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Dec 2005 20:36:57 -0000 kbyanc 2005-12-28 20:36:55 UTC FreeBSD src repository Modified files: usr.bin/netstat Makefile ipsec.c main.c netstat.h Added files: usr.bin/netstat pfkey.c Log: Add support for printing IPSEC protocol stats if the kernel was compiled with FAST_IPSEC rather than the KAME IPSEC stack. Note that the output of "netstat -s -p ipsec" differs depending on which stack is compiled into the kernel since they each keep different stats. This delta also adds the "esp", "ah", and "ipcomp" protocol stats, which are also available when the kernel is compiled with the FAST_IPSEC stack (e.g. "netstat -s -p esp"). Submitted by: Matt Titus MFC after: 3 days Revision Changes Path 1.31 +2 -1 src/usr.bin/netstat/Makefile 1.13 +266 -94 src/usr.bin/netstat/ipsec.c 1.81 +29 -0 src/usr.bin/netstat/main.c 1.47 +6 -0 src/usr.bin/netstat/netstat.h 1.1 +184 -0 src/usr.bin/netstat/pfkey.c (new)