From 8673a556e94fdebd41e93280cdceb705175d1c3b Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 21 Feb 2017 14:22:01 +0100 Subject: [PATCH] monitor: Fix LE Connection Response error decoding "Connection refused - Source CID already allocated" is 0x000a not 0x0010 > ACL Data RX: Handle 76 flags 0x02 dlen 18 LE L2CAP: LE Connection Response (0x15) ident 7 len 10 Destination CID: 0 MTU: 0 MPS: 0 Credits: 0 Result: Connection refused - Source CID already allocated (0x000a) --- monitor/l2cap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 0abf84e63..6022ce3c4 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -573,7 +573,7 @@ static void print_le_conn_result(uint16_t result) case 0x0009: str = "Connection refused - Invalid Source CID"; break; - case 0x0010: + case 0x000a: str = "Connection refused - Source CID already allocated"; break; default: -- 2.47.3