public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [Bluez-devel] Strange hci_get_route() result
@ 2005-07-10 22:47 Ronny L Nilsson
  2005-07-11 15:05 ` Marcel Holtmann
  0 siblings, 1 reply; 6+ messages in thread
From: Ronny L Nilsson @ 2005-07-10 22:47 UTC (permalink / raw)
  To: bluez-devel

[-- Attachment #1: Type: text/plain, Size: 621 bytes --]



Hi
On my system there's something fishy going on with the library function 
"hci_get_route()". When I use several dongels simultaneously it returns 
wrong value. I might be doing things wrong too of cource. This code 
below:
	str2ba("00:11:22:33:44:55", &ba);
	dev_id = hci_get_route(&ba);
	printf("%d\n", dev_id);

Prints "-1" as device id when I have one dongle attached and it prints 
"1" when I've got two. Both are incorrect, it should be 0.

However, if I apply the patch below it works much better. I find it 
very strange though if such a basic function is buggy, so what 
am I doing wrong? 

Regards
/Ronny




[-- Attachment #2: hci-lib.diff --]
[-- Type: text/x-diff, Size: 529 bytes --]

Index: libs/src/hci.c
===================================================================
RCS file: /cvsroot/bluez/libs/src/hci.c,v
retrieving revision 1.75
diff -u -p -r1.75 hci.c
--- libs/src/hci.c	9 Jul 2005 17:09:10 -0000	1.75
+++ libs/src/hci.c	10 Jul 2005 22:40:20 -0000
@@ -522,7 +522,7 @@ static int __same_bdaddr(int dd, int dev
 
 int hci_get_route(bdaddr_t *bdaddr)
 {
-	return hci_for_each_dev(HCI_UP, __other_bdaddr,
+	return hci_for_each_dev(HCI_UP, __same_bdaddr,
 				(long) (bdaddr ? bdaddr : BDADDR_ANY));
 }
 

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

end of thread, other threads:[~2005-07-11 19:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-10 22:47 [Bluez-devel] Strange hci_get_route() result Ronny L Nilsson
2005-07-11 15:05 ` Marcel Holtmann
2005-07-11 18:07   ` Ronny L Nilsson
2005-07-11 19:22     ` Marcel Holtmann
2005-07-11 19:31       ` Albert Huang
2005-07-11 19:36         ` Marcel Holtmann

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