diff --git a/tools/parser/l2cap.c b/tools/parser/l2cap.c
index 9fad9be..5416cf8 100644
--- a/tools/parser/l2cap.c
+++ b/tools/parser/l2cap.c
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
+#include <inttypes.h>
#include "parser.h"
#include "sdp.h"
#define DCID cid_table[1]
/* Can we move this to l2cap.h? */
-static struct {
+struct features {
char *name;
int flag;
-} l2cap_features[] = {
+};
+
+static struct features l2cap_features[] = {
{ "Flow control mode", L2CAP_FEAT_FLOWCTL },
{ "Retransmission mode", L2CAP_FEAT_RETRANS },
{ "Bi-directional QoS", L2CAP_FEAT_BIDIR_QOS },
{ 0 }
};
+static struct features l2cap_fix_chan[] = {
+ { "L2CAP Signalling Channel", L2CAP_FC_L2CAP },
+ { "L2CAP Connless", L2CAP_FC_CONNLESS },
+ { "AMP Manager Protocol", L2CAP_FC_A2MP },
+ { 0 }
+};
+
static struct frame *add_handle(uint16_t handle)
{
register handle_info *t = handle_table;
static void info_opt(int level, int type, void *ptr, int len)
{
uint32_t mask;
+ uint64_t fc_mask;
int i;
p_indent(level, 0);
}
break;
case 0x0003:
- printf("Fixed channel list\n");
+ fc_mask = bt_get_le64(ptr);
+ printf("Fixed channel list 0x%8.8" PRIx64 "\n", fc_mask);
+ if (parser.flags & DUMP_VERBOSE)
+ for (i=0; l2cap_fix_chan[i].name; i++)
+ if (fc_mask & l2cap_fix_chan[i].flag) {
+ p_indent(level + 1, 0);
+ printf("%s\n", l2cap_fix_chan[i].name);
+ }
break;
default:
printf("Unknown (len %d)\n", len);