Message ID | 20220525105015.2315987-6-josephsih@chromium.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [BlueZ,v5,1/8] doc: Introduce the quality report command and event | expand |
diff --git a/monitor/packet.c b/monitor/packet.c index 33b1f2fea..11f7fe87f 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -14901,4 +14901,13 @@ void packet_todo(void) printf("\t%s\n", le_meta_event_table[i].str); } + + printf("MGMT commands with missing decodings:\n"); + + for (i = 0; mgmt_command_table[i].str; i++) { + if (mgmt_command_table[i].func) + continue; + + printf("\t%s\n", mgmt_command_table[i].str); + } }