linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] Add dump for ATT MTU req/resp and notify value
@ 2011-02-09 13:53 Andre Dieb Martins
  2011-02-09 13:53 ` [PATCH 2/6] Add ATT error pdu dump Andre Dieb Martins
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Andre Dieb Martins @ 2011-02-09 13:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Andre Dieb Martins

---
 parser/att.c |   31 ++++++++++++++++++++++++++++++-
 1 files changed, 30 insertions(+), 1 deletions(-)

diff --git a/parser/att.c b/parser/att.c
index b670694..05f9c23 100644
--- a/parser/att.c
+++ b/parser/att.c
@@ -132,12 +132,35 @@ static const char *attop2str(uint8_t op)
 	}
 }
 
+static void att_mtu_req_dump(int level, struct frame *frm)
+{
+	uint16_t client_rx_mtu = btohs(htons(get_u16(frm)));
+
+	p_indent(level, frm);
+	printf("client rx mtu %d\n", client_rx_mtu);
+}
+
+static void att_mtu_resp_dump(int level, struct frame *frm)
+{
+	uint16_t server_rx_mtu = btohs(htons(get_u16(frm)));
+
+	p_indent(level, frm);
+	printf("server rx mtu %d\n", server_rx_mtu);
+}
+
 static void att_handle_notify_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);
+
+	p_indent(level, frm);
+	printf("value ");
+	while (frm->len > 0) {
+		printf("0x%.2x ", get_u8(frm));
+	}
+	printf("\n");
 }
 
 void att_dump(int level, struct frame *frm)
@@ -147,9 +170,15 @@ void att_dump(int level, struct frame *frm)
 	op = get_u8(frm);
 
 	p_indent(level, frm);
-	printf("Opcode: %d (%s)\n", op, attop2str(op));
+	printf("Opcode %d (%s)\n", op, attop2str(op));
 
 	switch (op) {
+		case ATT_OP_MTU_REQ:
+			att_mtu_req_dump(level + 1, frm);
+			break;
+		case ATT_OP_MTU_RESP:
+			att_mtu_resp_dump(level + 1, frm);
+			break;
 		case ATT_OP_HANDLE_NOTIFY:
 			att_handle_notify_dump(level + 1, frm);
 			break;
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-02-09 14:24 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-09 13:53 [PATCH 1/6] Add dump for ATT MTU req/resp and notify value Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 2/6] Add ATT error pdu dump Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 3/6] Add ATT find info req/resp dump Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 4/6] Better ATT dump format Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 5/6] Add ATT dump for read req/resp Andre Dieb Martins
2011-02-09 13:53 ` [PATCH 6/6] Add ATT read by type req/resp dump Andre Dieb Martins
2011-02-09 13:57 ` [PATCH 1/6] Add dump for ATT MTU req/resp and notify value André Dieb
2011-02-09 14:24 ` Gustavo F. Padovan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).