From owner-cvs-src@FreeBSD.ORG Mon Aug 11 01:40:03 2003 Return-Path: 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 1C57737B401; Mon, 11 Aug 2003 01:40:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A58D743FB1; Mon, 11 Aug 2003 01:40:02 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7B8e20U015959; Mon, 11 Aug 2003 01:40:02 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7B8e2cC015958; Mon, 11 Aug 2003 01:40:02 -0700 (PDT) Message-Id: <200308110840.h7B8e2cC015958@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 11 Aug 2003 01:40:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/atm ng_atmpif.hsrc/sys/modules/netgraph/atm Makefile src/sys/conf NOTES files options src/share/man/man4 Makefile ng_atmpif.4 src/sys/netgraph/atm/atmpif ng_atmpif.c src/sys/modules/netgraph/atm/atmpif ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 11 Aug 2003 08:40:03 -0000 harti 2003/08/11 01:40:02 PDT FreeBSD src repository Modified files: sys/modules/netgraph/atm Makefile sys/conf NOTES files options share/man/man4 Makefile Added files: sys/netgraph/atm ng_atmpif.h share/man/man4 ng_atmpif.4 sys/netgraph/atm/atmpif ng_atmpif.c ng_atmpif_harp.c ng_atmpif_var.h sys/modules/netgraph/atm/atmpif Makefile Log: Add ng_atmpif: a HARP physical interface emulation. This allows one to run the HARP ATM stack without real hardware. Submitted by: Vincent Jardin Revision Changes Path 1.218 +1 -0 src/share/man/man4/Makefile 1.1 +150 -0 src/share/man/man4/ng_atmpif.4 (new) 1.1168 +1 -0 src/sys/conf/NOTES 1.813 +2 -0 src/sys/conf/files 1.409 +1 -0 src/sys/conf/options 1.2 +3 -2 src/sys/modules/netgraph/atm/Makefile 1.1 +10 -0 src/sys/modules/netgraph/atm/atmpif/Makefile (new) 1.1 +708 -0 src/sys/netgraph/atm/atmpif/ng_atmpif.c (new) 1.1 +933 -0 src/sys/netgraph/atm/atmpif/ng_atmpif_harp.c (new) 1.1 +147 -0 src/sys/netgraph/atm/atmpif/ng_atmpif_var.h (new) 1.1 +175 -0 src/sys/netgraph/atm/ng_atmpif.h (new)