From owner-cvs-all@FreeBSD.ORG Mon Aug 30 06:29:26 2004 Return-Path: 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 A29FC16A4CF; Mon, 30 Aug 2004 06:29:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F27343D55; Mon, 30 Aug 2004 06:29:26 +0000 (GMT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7U6TQIH088280; Mon, 30 Aug 2004 06:29:26 GMT (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7U6TQ5C088279; Mon, 30 Aug 2004 06:29:26 GMT (envelope-from brooks) Message-Id: <200408300629.i7U6TQ5C088279@repoman.freebsd.org> From: Brooks Davis Date: Mon, 30 Aug 2004 06:29:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sys/sys param.h src/sys/net if.c if.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 30 Aug 2004 06:29:26 -0000 brooks 2004-08-30 06:29:26 UTC FreeBSD src repository Modified files: . UPDATING sys/sys param.h sys/net if.c if.h Log: Add a new variable, ifi_epoch, to struct if_data. It is set to the last time the interface counters were zeroed, currently the time if_attach() was called. It is indentended to be a valid value for RFC2233's ifCounterDiscontinuityTime and to make it easier for applications to verify that the interface they find at a given index is the one that was there last time they looked. An if_epoch "compatability" macro has not been created as ifi_epoch has never been a member of struct ifnet. Approved by: andre, bms, wollman Revision Changes Path 1.352 +5 -0 src/UPDATING 1.201 +1 -0 src/sys/net/if.c 1.89 +1 -0 src/sys/net/if.h 1.214 +1 -1 src/sys/sys/param.h