From owner-cvs-src-old@FreeBSD.ORG Fri Jan 30 22:23:32 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 258921065733 for ; Fri, 30 Jan 2009 22:23:30 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AB2A78FC16 for ; Fri, 30 Jan 2009 22:23:30 +0000 (UTC) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n0UMNU2D055778 for ; Fri, 30 Jan 2009 22:23:30 GMT (envelope-from emax@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n0UMNUx9055777 for cvs-src-old@freebsd.org; Fri, 30 Jan 2009 22:23:30 GMT (envelope-from emax@repoman.freebsd.org) Message-Id: <200901302223.n0UMNUx9055777@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to emax@repoman.freebsd.org using -f From: Maksim Yevmenkin Date: Fri, 30 Jan 2009 22:23:21 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bluetooth/btpand Makefile bnep.c bnep.h btpand.8 btpand.c btpand.h channel.c client.c event.c event.h packet.c sdp.c sdp.h server.c tap.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jan 2009 22:23:32 -0000 emax 2009-01-30 22:23:21 UTC FreeBSD src repository Added files: usr.sbin/bluetooth/btpand Makefile bnep.c bnep.h btpand.8 btpand.c btpand.h channel.c client.c event.c event.h packet.c sdp.c sdp.h server.c tap.c Log: SVN rev 187938 on 2009-01-30 22:23:21Z by emax Add btpand(8) daemon from NetBSD. This daemon provides support for Bluetooth Network Access Point (NAP), Group Ad-hoc Network (GN) and Personal Area Network User (PANU) profiles. Obtained from: NetBSD MFC after: 1 month Revision Changes Path 1.1 +13 -0 src/usr.sbin/bluetooth/btpand/Makefile (new) 1.1 +755 -0 src/usr.sbin/bluetooth/btpand/bnep.c (new) 1.1 +72 -0 src/usr.sbin/bluetooth/btpand/bnep.h (new) 1.1 +241 -0 src/usr.sbin/bluetooth/btpand/btpand.8 (new) 1.1 +290 -0 src/usr.sbin/bluetooth/btpand/btpand.c (new) 1.1 +208 -0 src/usr.sbin/bluetooth/btpand/btpand.h (new) 1.1 +335 -0 src/usr.sbin/bluetooth/btpand/channel.c (new) 1.1 +192 -0 src/usr.sbin/bluetooth/btpand/client.c (new) 1.1 +309 -0 src/usr.sbin/bluetooth/btpand/event.c (new) 1.1 +147 -0 src/usr.sbin/bluetooth/btpand/event.h (new) 1.1 +110 -0 src/usr.sbin/bluetooth/btpand/packet.c (new) 1.1 +209 -0 src/usr.sbin/bluetooth/btpand/sdp.c (new) 1.1 +38 -0 src/usr.sbin/bluetooth/btpand/sdp.h (new) 1.1 +286 -0 src/usr.sbin/bluetooth/btpand/server.c (new) 1.1 +167 -0 src/usr.sbin/bluetooth/btpand/tap.c (new)