From owner-cvs-src@FreeBSD.ORG Tue Aug 12 07:26:00 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 BC37C37B401; Tue, 12 Aug 2003 07:26:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E24243F3F; Tue, 12 Aug 2003 07:26:00 -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 h7CEPx0U050569; Tue, 12 Aug 2003 07:25:59 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7CEPwSb050568; Tue, 12 Aug 2003 07:25:58 -0700 (PDT) Message-Id: <200308121425.h7CEPwSb050568@repoman.freebsd.org> From: Hartmut Brandt Date: Tue, 12 Aug 2003 07:25:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/atm Makefile src/sbin/atm/atmconfig Makefile atmconfig.8 atmconfig.h atmconfig.help diag.c diag.h main.c natm.c private.h 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: Tue, 12 Aug 2003 14:26:01 -0000 harti 2003/08/12 07:25:57 PDT FreeBSD src repository Modified files: sbin/atm Makefile Added files: sbin/atm/atmconfig Makefile atmconfig.8 atmconfig.h atmconfig.help diag.c diag.h main.c natm.c private.h Log: Add a program for configuration of the ATM drivers and the IP over ATM stuff. This utility allows inspection of the ATM characteristics, the PHY layer, including statistics of both, the retrival of the list of currently open channels and also allows access to utopia(4). Revision Changes Path 1.4 +1 -0 src/sbin/atm/Makefile 1.1 +17 -0 src/sbin/atm/atmconfig/Makefile (new) 1.1 +332 -0 src/sbin/atm/atmconfig/atmconfig.8 (new) 1.1 +96 -0 src/sbin/atm/atmconfig/atmconfig.h (new) 1.1 +189 -0 src/sbin/atm/atmconfig/atmconfig.help (new) 1.1 +1080 -0 src/sbin/atm/atmconfig/diag.c (new) 1.1 +48 -0 src/sbin/atm/atmconfig/diag.h (new) 1.1 +519 -0 src/sbin/atm/atmconfig/main.c (new) 1.1 +683 -0 src/sbin/atm/atmconfig/natm.c (new) 1.1 +52 -0 src/sbin/atm/atmconfig/private.h (new)