From owner-cvs-all@FreeBSD.ORG Mon Mar 8 02:54:36 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 60F4A16A4CE; Mon, 8 Mar 2004 02:54:36 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E22343D4C; Mon, 8 Mar 2004 02:54:36 -0800 (PST) (envelope-from benno@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i28AsaGe099922; Mon, 8 Mar 2004 02:54:36 -0800 (PST) (envelope-from benno@repoman.freebsd.org) Received: (from benno@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i28AsaNA099921; Mon, 8 Mar 2004 02:54:36 -0800 (PST) (envelope-from benno) Message-Id: <200403081054.i28AsaNA099921@repoman.freebsd.org> From: Benno Rice Date: Mon, 8 Mar 2004 02:54:36 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES files options src/sys/modules/netgraph/atmllc Makefile src/sys/netgraph ng_atmllc.c ng_atmllc.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, 08 Mar 2004 10:54:36 -0000 benno 2004/03/08 02:54:36 PST FreeBSD src repository Modified files: sys/conf NOTES files options Added files: sys/modules/netgraph/atmllc Makefile sys/netgraph ng_atmllc.c ng_atmllc.h Log: Add a netgraph node to handle ATM LLC encapsulation. This currently handles ethernet (tested) and FDDI (not tested). The main use for this is on ADSL (or other ATM) connections where bridged ethernet is used, PPPoE being a prime example. There is no manual page as yet, I will write one shortly. Reviewed by: harti Revision Changes Path 1.1204 +1 -0 src/sys/conf/NOTES 1.873 +1 -0 src/sys/conf/files 1.434 +1 -0 src/sys/conf/options 1.1 +6 -0 src/sys/modules/netgraph/atmllc/Makefile (new) 1.1 +278 -0 src/sys/netgraph/ng_atmllc.c (new) 1.1 +45 -0 src/sys/netgraph/ng_atmllc.h (new)