public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [Bluez-devel] Error in rfcomm command
@ 2004-11-21 11:53 Dieter Wirtz
  2004-11-21 16:59 ` Marcel Holtmann
  0 siblings, 1 reply; 2+ messages in thread
From: Dieter Wirtz @ 2004-11-21 11:53 UTC (permalink / raw)
  To: bluez-devel

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Bluez-devel] Error in rfcomm command
  2004-11-21 11:53 [Bluez-devel] Error in rfcomm command Dieter Wirtz
@ 2004-11-21 16:59 ` Marcel Holtmann
  0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2004-11-21 16:59 UTC (permalink / raw)
  To: BlueZ Mailing List

Hi Dieter,

> 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;
> ...

it thought I tested this and it always worked for me. However you are
right and it is fixed in CVS now. Next time send a unified diff, because
it is easier to read.

> 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.

I don't know why it shows "Host is down", but you can't connect and bind
the same RFCOMM TTY at the same time. If you binded it, then you should
open the TTY to get the connection.

Regards

Marcel




-------------------------------------------------------
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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-11-21 16:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-21 11:53 [Bluez-devel] Error in rfcomm command Dieter Wirtz
2004-11-21 16:59 ` Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox