From 237e1e52b5e3df9fe3aa01ba2e1e7ad3f87f332a Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Tue, 21 Feb 2017 14:23:22 +0100 Subject: [PATCH] monitor: Add missing error code for LE Connection Response This adds missing decoding for 0x000b result code. --- monitor/l2cap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 6022ce3c4..59348693e 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -576,6 +576,9 @@ static void print_le_conn_result(uint16_t result) case 0x000a: str = "Connection refused - Source CID already allocated"; break; + case 0x000b: + str = "Connection refused - unacceptable parameters"; + break; default: str = "Reserved"; break; -- 2.47.3