From 851b3fd5c759ea84fbc83c13c0365e8c2f446bee Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 13 Jun 2011 16:46:46 +0300 Subject: [PATCH] hcidump: Add support for OBEX Action command Add support for parsing OBEX Action command and related headers. --- tools/parser/obex.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/parser/obex.c b/tools/parser/obex.c index 1767efd09..ede674823 100644 --- a/tools/parser/obex.c +++ b/tools/parser/obex.c @@ -52,7 +52,7 @@ static char *opcode2str(uint8_t opcode) case 0x05: return "SetPath"; case 0x06: - return "Reserved"; + return "Action"; case 0x07: return "Session"; case 0x7f: @@ -181,6 +181,12 @@ static char *hi2str(uint8_t hi) return "Session Parameters"; case 0x13: return "Session Sequence Number"; + case 0x14: + return "Action ID"; + case 0x15: + return "DestName"; + case 0x16: + return "Permission"; default: return "Unknown"; } -- 2.47.3