OSDN Git Service
(root)
/
android-x86
/
external-bluetooth-bluez.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9844a8c
)
emulator/bthost: Use right CID for LE signaling
author
Johan Hedberg
<johan.hedberg@intel.com>
Thu, 19 Sep 2013 23:45:09 +0000
(
02:45
+0300)
committer
Johan Hedberg
<johan.hedberg@intel.com>
Fri, 20 Sep 2013 03:19:22 +0000
(06:19 +0300)
emulator/bthost.c
patch
|
blob
|
history
diff --git
a/emulator/bthost.c
b/emulator/bthost.c
index
5e3a186
..
2c96bc5
100644
(file)
--- a/
emulator/bthost.c
+++ b/
emulator/bthost.c
@@
-268,7
+268,7
@@
static uint8_t l2cap_sig_send(struct bthost *bthost, struct btconn *conn,
{
static uint8_t next_ident = 1;
struct bt_l2cap_hdr_sig *hdr;
- uint16_t pkt_len;
+ uint16_t pkt_len
, cid
;
void *pkt_data;
pkt_len = sizeof(*hdr) + len;
@@
-291,7
+291,12
@@
static uint8_t l2cap_sig_send(struct bthost *bthost, struct btconn *conn,
if (len > 0)
memcpy(pkt_data + sizeof(*hdr), data, len);
- send_acl(bthost, conn->handle, 0x0001, pkt_data, pkt_len);
+ if (conn->addr_type == BDADDR_BREDR)
+ cid = 0x0001;
+ else
+ cid = 0x0005;
+
+ send_acl(bthost, conn->handle, cid, pkt_data, pkt_len);
free(pkt_data);