Hi Andre, * Andre Dieb Martins <andre.dieb@xxxxxxxxxxx> [2011-02-09 11:01:49 -0300]: > --- > parser/att.c | 14 ++++++++++++++ > 1 files changed, 14 insertions(+), 0 deletions(-) > > diff --git a/parser/att.c b/parser/att.c > index b172f95..2a9da30 100644 > --- a/parser/att.c > +++ b/parser/att.c > @@ -331,6 +331,14 @@ static void att_find_info_resp_dump(int level, struct frame *frm) > } > } > > +static void att_read_req_dump(int level, struct frame *frm) > +{ > + uint16_t handle = btohs(htons(get_u16(frm))); > + > + p_indent(level, frm); > + printf("handle 0x%2.2x\n", handle); > +} > + > static void att_handle_notify_dump(int level, struct frame *frm) > { > uint16_t handle = btohs(htons(get_u16(frm))); > @@ -371,6 +379,12 @@ void att_dump(int level, struct frame *frm) > case ATT_OP_FIND_INFO_RESP: > att_find_info_resp_dump(level + 1, frm); > break; > + case ATT_OP_READ_REQ: > + att_read_req_dump(level + 1, frm); > + break; > + case ATT_OP_READ_RESP: > + raw_dump(level + 1, frm); raw_dump? -- Gustavo F. Padovan http://profusion.mobi -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html