From 741a04aba0c348d4e1b280e1202d439f2e572ab6 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 20 Jun 2023 13:36:35 -0700 Subject: [PATCH] monitor: Add missing flags to MGMT Device Found Event This adds the missing flags to MGMT Device Found Event so they can be decoded properly. --- monitor/packet.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monitor/packet.c b/monitor/packet.c index 6d73e5abf..4473fda29 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -12858,6 +12858,8 @@ static const struct bitfield_data mgmt_device_flags_table[] = { { 1, "Legacy Pairing" }, { 2, "Not Connectable" }, { 3, "Connection Locally Initiated" }, + { 4, "Name Request Failed" }, + { 5, "Scan Response" }, { } }; -- 2.47.3