aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btatt.h
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2015-12-14 19:35:39 +0100
committerMichal Labedzki <michal.labedzki@tieto.com>2016-01-20 13:59:29 +0000
commitfdec8657bf2fac149c59fbf31b0fa863126b4e35 (patch)
tree4c972c86f42efb1c74ee8510bd05504d206c0e31 /epan/dissectors/packet-btatt.h
parentfe525864f520c13fb46b97d59bb7053c6a0b2bc7 (diff)
Bluetooth: GATT: Add support for TDS
TDS is one of the newest profiles announced by Bluetooth SIG last time. Also start adding expert info about usage of characteristic. In this case mandatory properties are Write or Indicate, so warn in other cases. Change-Id: I0474c1986ddb16c4bcd03aa9160a07b0cacc76c6 Reviewed-on: https://code.wireshark.org/review/13391 Petri-Dish: Michal Labedzki <michal.labedzki@tieto.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan/dissectors/packet-btatt.h')
-rw-r--r--epan/dissectors/packet-btatt.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/epan/dissectors/packet-btatt.h b/epan/dissectors/packet-btatt.h
index 6f15f797c1..8b21c2f7fe 100644
--- a/epan/dissectors/packet-btatt.h
+++ b/epan/dissectors/packet-btatt.h
@@ -25,6 +25,13 @@
#ifndef __PACKET_BTATT_H__
#define __PACKET_BTATT_H__
+typedef struct _btatt_data_t {
+ bluetooth_data_t *bluetooth_data;
+
+ guint8 opcode;
+} btatt_data_t;
+
+
typedef struct _tap_handles_t {
guint32 handle;
bluetooth_uuid_t uuid;
@@ -36,6 +43,7 @@ extern const value_string btatt_ips_uncertainty_stationary_vals[];
extern const value_string btatt_ips_uncertainty_update_time_vals[];
extern const value_string btatt_ips_uncertainty_precision_vals[];
extern const value_string btatt_ips_uncertainty_coordinate_system[];
+extern const value_string tds_organization_id_vals[];
#endif