From owner-freebsd-bluetooth@FreeBSD.ORG Mon Mar 17 00:29:41 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ABD93106566B for ; Mon, 17 Mar 2008 00:29:41 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.158]) by mx1.freebsd.org (Postfix) with ESMTP id 273DE8FC27 for ; Mon, 17 Mar 2008 00:29:40 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by fg-out-1718.google.com with SMTP id 16so4476805fgg.35 for ; Sun, 16 Mar 2008 17:29:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=auBurzcSVzOmTgSd2Ca1GE8RdHx+DEqx5dZVog/Aw1o=; b=c3sFN8sSJGsD6DFDohOIs94Fp7WLH1TJoeYNCS2el0R/d3cDu1Wils5GU9A1REXYQtDJiE+QKdjhN0Cy102Xqe/QVLPT9ZzUeHdycJghQUZXqO/LjX1jsSGXm3MNoI2XkMRDj9y/ShoT42RffrhvtBpPIgTfA9jZg4yHfiIifKQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZxLtX+vdYyMeD7CzkHYwAjDbicGEBaKnOQVMON8/8KCMJdTWEEzQFNV2T4SaJlN0kEWqpbG8xVW1vB1aMaQtx0fU843HrIBSd/ic5mchsR1gXIzDUyUK7DeQXDmmdJ4WjGWfeUoggkk7w81hJmehmIeMTIERRHtl2klOqt0S2wA= Received: by 10.86.99.9 with SMTP id w9mr13127606fgb.44.1205713779468; Sun, 16 Mar 2008 17:29:39 -0700 (PDT) Received: by 10.86.23.12 with HTTP; Sun, 16 Mar 2008 17:29:39 -0700 (PDT) Message-ID: Date: Sun, 16 Mar 2008 17:29:39 -0700 From: "Maksim Yevmenkin" To: mato In-Reply-To: <47DBE7A4.3060006@users.sf.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47DBE7A4.3060006@users.sf.net> X-Mailman-Approved-At: Mon, 17 Mar 2008 00:35:13 +0000 Cc: Subject: Re: BT issues X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Mar 2008 00:29:41 -0000 Hello, > I've got two questions regarding bluetooth in FreeBSD: > > 1) I'd like to start rfcomm_pppd automatically upon connecting my BT > dongle. I know about /etc/devd.conf but from my understanding only one > action takes place and there's already action for ubt device and so I don't > know how to trigger my script. you do not really have to do it. you can run rfcomm_pppd even if no bluetooth devices are connected to the system. basically, all you need to do is to run both sdpd and rfcomm_pppd bound to wildcard (aka ANY) bd_addr. 1) to enable sdpd at boot time just add to your /etc/rc.conf the following line sdpd_enanble="YES" this should start sdpd on boot automatically. to start/stop sdpd at run time use /etc/rc.d/sdpd start/stop 2) please cut and paste the following rc script into /etc/rc.d/rfcomm_pppd_server == #!/bin/sh # # $FreeBSD$ # # PROVIDE: rfcomm_pppd_server # REQUIRE: DAEMON sdpd # BEFORE: LOGIN # KEYWORD: nojail . /etc/rc.subr name="rfcomm_pppd_server" rcvar=`set_rcvar` command="/usr/sbin/rfcomm_pppd" command_args="-s" start_precmd="rfcomm_pppd_server_prestart" required_modules="ng_btsocket" rfcomm_pppd_server_prestart() { if [ -n "${rfcomm_pppd_server_bd_addr}" ]; then command_args="${command_args} -a ${rfcomm_pppd_server_bd_addr}" fi command_args="${command_args} -C ${rfcomm_pppd_server_channel:-1}" command_args="${command_args} -l ${rfcomm_pppd_server_label:-rfcomm-server}" if checkyesno rfcomm_pppd_server_register_sp ; then command_args="${command_args} -S" fi if checkyesno rfcomm_pppd_server_register_dun ; then command_args="${command_args} -D" fi } load_rc_config $name run_rc_command "$1" == 3) to enable rfcomm_pppd server at boot time just add to your /etc/rc.conf the following line rfcomm_pppd_server_enanble="YES" rfcomm_pppd_server_channel=1 # EDIT THIS IF NEEDED rfcomm_pppd_server_label="rfcomm-server" # EDIT THIS IF NEEDED rfcomm_pppd_server_register_sp="NO" rfcomm_pppd_server_register_dun="NO" this should start rfcomm_pppd server on boot automatically. to start/stop rfcomm_pppd server at run time use /etc/rc.d/rfcomm_pppd start/stop > 2) I've got two ppp.conf profiles, one for FreeBSD and one for Windows. > When I connect FreeBSD laptop via rfcomm_pppd it works and caches the hcsec > key. But if I try to connect Windows machine, it asks for password and it > seems the key is changed as from that time I cannot connect FreeBSD machine > and I have to remove hcsecd.keys and restart hcsecd. Why and what can be > done about it ? I'm not really sure what are you trying to do. before giving any suggestions, i'd like to see hcsecd.conf and hcidump that shows the problem with authentication. thanks, max p.s. please keep freebsd-bluetooth@ in the cc list From owner-freebsd-bluetooth@FreeBSD.ORG Tue Mar 18 00:35:16 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 465F0106566B for ; Tue, 18 Mar 2008 00:35:16 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159]) by mx1.freebsd.org (Postfix) with ESMTP id B6BD58FC16 for ; Tue, 18 Mar 2008 00:35:15 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by fg-out-1718.google.com with SMTP id 16so4932485fgg.35 for ; Mon, 17 Mar 2008 17:35:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=liUN6dRCtMUnceoN0WmG1jpi4KI0/wl8eyKwN2MyE1c=; b=P6LaTx871AxsN5kljaAwuIVpr6M4fPGtNSM72iCsgnHsaZoO94EE5ykCzJDanmXe/Cb8cxv9TZdFVlje+2Gc7M5QsOR2uMMyjaa3i1uVywmxqUM/1+1I1YfkmGqpxQ7r6vEinaUvCiasBI7367EfryMDtxKGhXdHRLNq0Q97V/Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=NpIFzLDhq37rMoFz2RKw1msldmgCUlEApGS9IY0J1RaLCKpFbCLjlOWWU8a8EDIO611BaVTwBovImlRK0Kl/EGzvW8k0Ma6Y/WcqoFtmLcPJ96fGOcX3VNPCb5ptaFVREanpa+df/r7Ax3abtUXhsFMkhAQJrJBrJp8LEj/zJ60= Received: by 10.86.89.4 with SMTP id m4mr13822488fgb.14.1205800514424; Mon, 17 Mar 2008 17:35:14 -0700 (PDT) Received: by 10.86.23.12 with HTTP; Mon, 17 Mar 2008 17:35:14 -0700 (PDT) Message-ID: Date: Mon, 17 Mar 2008 16:35:14 -0800 From: "Maksim Yevmenkin" To: Rako In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47D5BEE3.80109@gmail.com> Cc: freebsd-bluetooth@freebsd.org Subject: Re: Bluetooth PAN support for FreeBSD X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2008 00:35:16 -0000 Hello, > > Hi, I write the code to teach sdpd and libsdp about pan profiles. Also > > write the registration of NAP service on btpand daemon. > > > > Tested with sony ericsson w850i. > > thanks for your work! i actually have somewhat similar patch that i'm > about to commit. i will add support for nap/gn and panu profiles. i have committed support for bnep based profiles into -current and have mfc'd it into releng_7 and _6. > > Thanks Maksim for the btpand work! > > btpand in NOT my work. Heiko Wundram (Beenic) "wundram (at) beenic > (dot) net" deserves all the credit for this work. btw, with Heiko's > permission, i will be importing btpand into the main tree soon. i'm currently talking to Heiko about importing newer version of the btpand into the main tree. thanks, max From owner-freebsd-bluetooth@FreeBSD.ORG Tue Mar 18 10:07:12 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9361B1065677 for ; Tue, 18 Mar 2008 10:07:12 +0000 (UTC) (envelope-from plunky@rya-online.net) Received: from smtp01.one2one.net (smtp01.one2one.net [149.254.200.196]) by mx1.freebsd.org (Postfix) with ESMTP id BB3178FC12 for ; Tue, 18 Mar 2008 10:07:11 +0000 (UTC) (envelope-from plunky@rya-online.net) Received: from [127.0.0.1] (helo=localhost) by smtpbarns01 with esmtp (Exim 4.50) id 1JbYWb-0004HM-9W; Tue, 18 Mar 2008 09:54:29 +0000 Received: from smtpbarns01 ([127.0.0.1]) by localhost (smtpbarns01 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16248-10; Tue, 18 Mar 2008 09:54:29 +0000 (GMT) Received: from [10.33.145.107] (helo=rya-online.net) by smtpbarns01 with smtp (Exim 4.50) id 1JbYWZ-0004HC-PM; Tue, 18 Mar 2008 09:54:28 +0000 Received: (nullmailer pid 1576 invoked by uid 1000); Tue, 18 Mar 2008 09:45:27 -0000 Date: Tue, 18 Mar 2008 09:45:27 +0000 (GMT) To: Maksim Yevmenkin In-Reply-To: References: <47D5BEE3.80109@gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Message-Id: <1205833527.826584.1207.nullmailer@galant.ukfsn.org> From: Iain Hibbert X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at example.com X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: plunky@rya-online.net X-SA-Exim-Scanned: No (on smtpbarns01); SAEximRunCond expanded to false Cc: freebsd-bluetooth@freebsd.org Subject: Re: Bluetooth PAN support for FreeBSD X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2008 10:07:12 -0000 On Mon, 17 Mar 2008, Maksim Yevmenkin wrote: > i have committed support for bnep based profiles into -current and > have mfc'd it into releng_7 and _6. +struct sdp_nap_profile +{ + uint16_t security_description; /* HBO: NAP/GN */ + uint16_t net_access_type; /* HBO: NAP */ + uint32_t max_net_access_rate; /* HBO: NAP */ +}; what does HBO mean? iain From owner-freebsd-bluetooth@FreeBSD.ORG Tue Mar 18 10:40:20 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20B8110656C4 for ; Tue, 18 Mar 2008 10:40:20 +0000 (UTC) (envelope-from plunky@rya-online.net) Received: from smtp01.one2one.net (smtp01.one2one.net [149.254.200.196]) by mx1.freebsd.org (Postfix) with ESMTP id DCAA48FC2A for ; Tue, 18 Mar 2008 10:40:19 +0000 (UTC) (envelope-from plunky@rya-online.net) Received: from [127.0.0.1] (helo=localhost) by smtpbarns01 with esmtp (Exim 4.50) id 1JbZK1-0005N4-Cy; Tue, 18 Mar 2008 10:45:33 +0000 Received: from smtpbarns01 ([127.0.0.1]) by localhost (smtpbarns01 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20423-09; Tue, 18 Mar 2008 10:45:33 +0000 (GMT) Received: from [10.33.145.107] (helo=rya-online.net) by smtpbarns01 with smtp (Exim 4.50) id 1JbZJz-0005Mx-Q6; Tue, 18 Mar 2008 10:45:33 +0000 Received: (nullmailer pid 5734 invoked by uid 1000); Tue, 18 Mar 2008 10:36:31 -0000 Date: Tue, 18 Mar 2008 10:36:31 +0000 (GMT) To: Maksim Yevmenkin In-Reply-To: <1205833527.826584.1207.nullmailer@galant.ukfsn.org> References: <47D5BEE3.80109@gmail.com> <1205833527.826584.1207.nullmailer@galant.ukfsn.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Message-Id: <1205836591.496323.5609.nullmailer@galant.ukfsn.org> From: Iain Hibbert X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at example.com X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: plunky@rya-online.net X-SA-Exim-Scanned: No (on smtpbarns01); SAEximRunCond expanded to false Cc: freebsd-bluetooth@freebsd.org Subject: Re: Bluetooth PAN support for FreeBSD X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2008 10:40:20 -0000 On Tue, 18 Mar 2008, Iain Hibbert wrote: > On Mon, 17 Mar 2008, Maksim Yevmenkin wrote: > > > i have committed support for bnep based profiles into -current and > > have mfc'd it into releng_7 and _6. > > +struct sdp_nap_profile > +{ > + uint16_t security_description; /* HBO: NAP/GN */ > + uint16_t net_access_type; /* HBO: NAP */ > + uint32_t max_net_access_rate; /* HBO: NAP */ > +}; also, why no PSM and load_factor ? uint16_t psm; uint8_t load_factor; both would seem useful here.. iain From owner-freebsd-bluetooth@FreeBSD.ORG Tue Mar 18 16:24:19 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 614FB106564A for ; Tue, 18 Mar 2008 16:24:19 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.158]) by mx1.freebsd.org (Postfix) with ESMTP id F312E8FC1F for ; Tue, 18 Mar 2008 16:24:18 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by fg-out-1718.google.com with SMTP id 16so5232942fgg.35 for ; Tue, 18 Mar 2008 09:24:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=qf8LRrvZrTxpVghw4C+4juRics9eQFUfPEwRSc5hQIk=; b=MeG9uMdmHBIu3cB/cUfjl2cfbXqRnAToeFVNOyoN+nKOcobS0BmUTosnV6BmxhJGDK51Tz2sPjIurJrC1DRLV81dRb1t+bVQFGXYfsyveNtxvgcIEMCnRgEaneUUi+vqyhguW/UTXN6zwmUv1QAo9o5vR+fzUG6HIsUhr7JNQkM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=qeo1WVc8Idr3coNqHbfgOj6oI9yTHkXTwobSwFzWNEhCtGFmOvVL3fM0AToNHgdaoU462AVPRVo1xcUFWahnvTRWsA+87Z5lmVLkFF4ioE4qNFerOE/v/bYgk8Sp6WGe+8Gp/XKR7q8mn2CsQvsV+qrfICmSy0+T3IVm1vahxlg= Received: by 10.82.121.15 with SMTP id t15mr3036392buc.8.1205857456090; Tue, 18 Mar 2008 09:24:16 -0700 (PDT) Received: by 10.86.23.12 with HTTP; Tue, 18 Mar 2008 09:24:16 -0700 (PDT) Message-ID: Date: Tue, 18 Mar 2008 08:24:16 -0800 From: "Maksim Yevmenkin" To: "Iain Hibbert" In-Reply-To: <1205833527.826584.1207.nullmailer@galant.ukfsn.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47D5BEE3.80109@gmail.com> <1205833527.826584.1207.nullmailer@galant.ukfsn.org> Cc: freebsd-bluetooth@freebsd.org Subject: Re: Bluetooth PAN support for FreeBSD X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2008 16:24:19 -0000 On 3/18/08, Iain Hibbert wrote: > On Mon, 17 Mar 2008, Maksim Yevmenkin wrote: > > > i have committed support for bnep based profiles into -current and > > have mfc'd it into releng_7 and _6. > > > +struct sdp_nap_profile > +{ > + uint16_t security_description; /* HBO: NAP/GN */ > + uint16_t net_access_type; /* HBO: NAP */ > + uint32_t max_net_access_rate; /* HBO: NAP */ > +}; > > what does HBO mean? host byte order. > also, why no PSM and load_factor ? > > uint16_t psm; > uint8_t load_factor; > > both would seem useful here.. well, psm comes from assigned numbers specification, i.e. 15. my initial concern was about "broken" devices, i.e. devices that do not make sdp query and simply use default psm. however, this is a bogus argument because if device does not use sdp it really does not matter what i put in there :) so, i really do not have very strong opinion about it. it is trivial to add if people want it. i did not add load_factor because i was not sure if anybody ever going to look at it. it is marked as optional. again, it is trivial to add if people want it. thanks, max From owner-freebsd-bluetooth@FreeBSD.ORG Tue Mar 18 23:27:17 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 987081065678 for ; Tue, 18 Mar 2008 23:27:17 +0000 (UTC) (envelope-from plunky@rya-online.net) Received: from smtp01.one2one.net (smtp01.one2one.net [149.254.200.196]) by mx1.freebsd.org (Postfix) with ESMTP id 6BB298FC27 for ; Tue, 18 Mar 2008 23:27:17 +0000 (UTC) (envelope-from plunky@rya-online.net) Received: from [127.0.0.1] (helo=localhost) by smtpbarns01 with esmtp (Exim 4.50) id 1JblD6-0005zY-ME; Tue, 18 Mar 2008 23:27:12 +0000 Received: from smtpbarns01 ([127.0.0.1]) by localhost (smtpbarns01 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22736-10; Tue, 18 Mar 2008 23:27:12 +0000 (GMT) Received: from [10.34.171.152] (helo=rya-online.net) by smtpbarns01 with smtp (Exim 4.50) id 1JblD5-0005zS-7e; Tue, 18 Mar 2008 23:27:12 +0000 Received: (nullmailer pid 3174 invoked by uid 1000); Tue, 18 Mar 2008 23:23:30 -0000 Date: Tue, 18 Mar 2008 23:23:30 +0000 (GMT) To: Maksim Yevmenkin In-Reply-To: References: <47D5BEE3.80109@gmail.com> <1205833527.826584.1207.nullmailer@galant.ukfsn.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Message-Id: <1205882610.269211.3752.nullmailer@galant.ukfsn.org> From: Iain Hibbert X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at example.com X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: plunky@rya-online.net X-SA-Exim-Scanned: No (on smtpbarns01); SAEximRunCond expanded to false Cc: freebsd-bluetooth@freebsd.org Subject: assigned numbers specification X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Mar 2008 23:27:17 -0000 On Tue, 18 Mar 2008, Maksim Yevmenkin wrote: > well, psm comes from assigned numbers specification, btw do you have such a document? I don't have any copy and so far as I can see, it is only available at bluetooth.org under password protection now :-/ iain From owner-freebsd-bluetooth@FreeBSD.ORG Wed Mar 19 00:08:54 2008 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4029E1065670 for ; Wed, 19 Mar 2008 00:08:54 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.155]) by mx1.freebsd.org (Postfix) with ESMTP id D1B7C8FC1D for ; Wed, 19 Mar 2008 00:08:53 +0000 (UTC) (envelope-from maksim.yevmenkin@gmail.com) Received: by fg-out-1718.google.com with SMTP id 16so124803fgg.35 for ; Tue, 18 Mar 2008 17:08:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=UnOgaxsgs/y6VCkvaCBT+BRtGXpKk3XYLI2XhsadcZw=; b=S8kWUmcqMADrTzpadBt7mZyMsQUpsmVNuWBeKrzn1WXjNruYCseiGH8M4m2uBiIlahSlyywoFmPRUBtTbT2L1FZOhI448TvYO07GXEEvs/NH8eg7GI4z7HQg3fSZkakdZLAXsMMMNif0bD0veXSPDPJaZ/Vv8g8FRWOjzz/yxhs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=shI4erYNXAYVcULFiHf7rIeHqt3SU77URLfHt5vDwCGHfPB6fF4KqlYvAZp0MZfOVOQEv/w5MosU21NqnJd9YRkSN1qTz94doyQeIk9XumsWZpuzYiZlbACJe2/lCnotuCmRY90wxj/dKjTFFxONLYrgst+3zJWGRmUI1swrt7E= Received: by 10.86.61.13 with SMTP id j13mr14915704fga.26.1205885332642; Tue, 18 Mar 2008 17:08:52 -0700 (PDT) Received: by 10.86.23.12 with HTTP; Tue, 18 Mar 2008 17:08:52 -0700 (PDT) Message-ID: Date: Tue, 18 Mar 2008 16:08:52 -0800 From: "Maksim Yevmenkin" To: "Iain Hibbert" In-Reply-To: <1205882610.269211.3752.nullmailer@galant.ukfsn.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <47D5BEE3.80109@gmail.com> <1205833527.826584.1207.nullmailer@galant.ukfsn.org> <1205882610.269211.3752.nullmailer@galant.ukfsn.org> Cc: freebsd-bluetooth@freebsd.org Subject: Re: assigned numbers specification X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2008 00:08:54 -0000 On 3/18/08, Iain Hibbert wrote: > On Tue, 18 Mar 2008, Maksim Yevmenkin wrote: > > > well, psm comes from assigned numbers specification, > > btw do you have such a document? I don't have any copy and so far as I > can see, it is only available at bluetooth.org under password protection > now :-/ well, i have a printed copy somewhere. you are right though, bluetooth.org now hides everything under password protection. very annoying. i think, i have an account with them. need to dig up the credentials though :) thanks, max