From 1cbb3e88bed13a2ea5e2cfb1ba136d959a1208fb Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Fri, 11 Oct 2013 14:53:35 +0200 Subject: [PATCH] monitor: Add ATT over BR/EDR decoding support --- monitor/l2cap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monitor/l2cap.c b/monitor/l2cap.c index 826d75426..04290b368 100644 --- a/monitor/l2cap.c +++ b/monitor/l2cap.c @@ -2502,6 +2502,9 @@ static void l2cap_frame(uint16_t index, bool in, uint16_t handle, case 0x0001: sdp_packet(&frame, chan); break; + case 0x001f: + att_packet(index, in, handle, cid, data, size); + break; default: packet_hexdump(data, size); break; -- 2.11.0