From owner-cvs-src-old@FreeBSD.ORG Thu Mar 5 18:04:10 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 455BB10656C3 for ; Thu, 5 Mar 2009 18:04:10 +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 14D738FC17 for ; Thu, 5 Mar 2009 18:04:10 +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 n25I49EZ045711 for ; Thu, 5 Mar 2009 18:04:09 GMT (envelope-from emax@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n25I49hH045710 for cvs-src-old@freebsd.org; Thu, 5 Mar 2009 18:04:09 GMT (envelope-from emax@repoman.freebsd.org) Message-Id: <200903051804.n25I49hH045710@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to emax@repoman.freebsd.org using -f From: Maksim Yevmenkin Date: Thu, 5 Mar 2009 18:03:46 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/usr.sbin/bluetooth Makefile 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: Thu, 05 Mar 2009 18:04:10 -0000 emax 2009-03-05 18:03:46 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) usr.sbin/bluetooth Makefile Added files: (Branch: RELENG_7) 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 189414 on 2009-03-05 18:03:46Z by emax MFC r187938 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. MFC r188013 Fix client mode. Pick up service availability changes. MFC r188014 Hook up btpand(8) to the build Obtained from: NetBSD Revision Changes Path 1.7.2.1 +1 -0 src/usr.sbin/bluetooth/Makefile 1.1.2.1 +13 -0 src/usr.sbin/bluetooth/btpand/Makefile (new) 1.1.2.1 +755 -0 src/usr.sbin/bluetooth/btpand/bnep.c (new) 1.1.2.1 +72 -0 src/usr.sbin/bluetooth/btpand/bnep.h (new) 1.1.2.1 +241 -0 src/usr.sbin/bluetooth/btpand/btpand.8 (new) 1.2.2.1 +293 -0 src/usr.sbin/bluetooth/btpand/btpand.c (new) 1.2.2.1 +212 -0 src/usr.sbin/bluetooth/btpand/btpand.h (new) 1.1.2.1 +335 -0 src/usr.sbin/bluetooth/btpand/channel.c (new) 1.1.2.1 +192 -0 src/usr.sbin/bluetooth/btpand/client.c (new) 1.1.2.1 +309 -0 src/usr.sbin/bluetooth/btpand/event.c (new) 1.1.2.1 +147 -0 src/usr.sbin/bluetooth/btpand/event.h (new) 1.1.2.1 +110 -0 src/usr.sbin/bluetooth/btpand/packet.c (new) 1.1.2.1 +209 -0 src/usr.sbin/bluetooth/btpand/sdp.c (new) 1.1.2.1 +38 -0 src/usr.sbin/bluetooth/btpand/sdp.h (new) 1.2.2.1 +277 -0 src/usr.sbin/bluetooth/btpand/server.c (new) 1.1.2.1 +167 -0 src/usr.sbin/bluetooth/btpand/tap.c (new)