From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-ID: <41A081D2.4060503@gmx.net> From: Dieter Wirtz MIME-Version: 1.0 To: bluez-devel@lists.sourceforge.net Content-Type: text/plain; charset=us-ascii; format=flowed Subject: [Bluez-devel] Error in rfcomm command Sender: bluez-devel-admin@lists.sourceforge.net Errors-To: bluez-devel-admin@lists.sourceforge.net Reply-To: bluez-devel@lists.sourceforge.net List-Unsubscribe: , List-Id: BlueZ development List-Post: List-Help: List-Subscribe: , List-Archive: Date: Sun, 21 Nov 2004 12:53:54 +0100 Hello, I've some problems with rfcomm (I use bluez-utils-2.11.tar.gz): 1. rfcomm connect If I want to connect to a device wich has an entry in rfcomm.conf with "rfcomm connect rfcomm0" I get the message "Can't find a config entry for rfcomm0"! I think it's an error in function "cmd_connect" (./bluez-utils-2.11/rfcomm/main.c): static void cmd_connect(int ctl, int dev, bdaddr_t *bdaddr, int argc, char **argv) { struct sockaddr_rc laddr, raddr; ... if (argc < 2) { if (rfcomm_read_config(rfcomm_config_file) < 0) { perror("Can't open RFCOMM config file"); return; } raddr.rc_family = AF_BLUETOOTH; bacpy(&raddr.rc_bdaddr, &rfcomm_opts[dev].bdaddr); raddr.rc_channel = rfcomm_opts[dev].channel; // wrong: if (bacmp(&req.dst, BDADDR_ANY) == 0) { // must be: if (bacmp(&raddr.rc_bdaddr, BDADDR_ANY) == 0) { fprintf(stderr, "Can't find a config entry for rfcomm%d\n", dev); return; } } else { raddr.rc_family = AF_BLUETOOTH; ... 2. rfcomm bind If I execute "rfcomm bind rfcomm0" prior to "rfcomm connect rfcomm0" I get the message "Can't connect RFCOMM socket: Host is down"! After a "rfcomm release rfcomm0" and a repeated "rfcomm connect rfcomm0" the connection will establish. What can it be? Regards, Dieter ------------------------------------------------------- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that combines robust object and relational technologies, making it a perfect match for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 _______________________________________________ Bluez-devel mailing list Bluez-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bluez-devel