aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btsdp.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-01-12 00:50:41 +0000
committerMichael Mann <mmann78@netscape.net>2014-01-12 00:50:41 +0000
commitc071a1c7286eb9789dc5c96bb45ab75c75c3ecb4 (patch)
tree39717e01eed5f1ad45d3276c820938e3c0ee7d4d /epan/dissectors/packet-btsdp.h
parent4210311b6985f957ad4073b410678685f0494865 (diff)
Bluetooth/Ubertooth improvements. Bug 9606 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9606)
From Michal Labedski 1. add support for new btsnoop "format" introduced by BlueZ team in "btmon" tool 2. Bluetooth: Make EIR, AD and COD more generic 3. Bluetooth: HCI/LL: Update Error Codes to Core 4.1 Specification 4. Ubertooth: Fix response command handling 5. Ubertooth: Update to support firmware version 6. Ubertooth: Dissect by Vendor Id/Product Id svn path=/trunk/; revision=54699
Diffstat (limited to 'epan/dissectors/packet-btsdp.h')
-rw-r--r--epan/dissectors/packet-btsdp.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/epan/dissectors/packet-btsdp.h b/epan/dissectors/packet-btsdp.h
index 1fca6d8488..9e95d0230d 100644
--- a/epan/dissectors/packet-btsdp.h
+++ b/epan/dissectors/packet-btsdp.h
@@ -159,6 +159,8 @@
#define BTSDP_LOCAL_SERVICE_FLAG_MASK 0x0001
#define BTSDP_SECONDARY_CHANNEL_FLAG_MASK 0x0002
+#define SDP_PSM_DEFAULT 1
+
typedef struct _uuid_t {
guint16 bt_uuid;
guint8 size;
@@ -203,7 +205,14 @@ typedef struct _service_info_t {
struct _service_info_t *parent_info;
} service_info_t;
-#define SDP_PSM_DEFAULT 1
+
+typedef struct _custom_uuid_t {
+ const guint8 uuid[16];
+ const guint8 size;
+ const gchar *name;
+} custom_uuid_t;
+
+extern const custom_uuid_t custom_uuid[];
extern value_string_ext vs_service_classes_ext;