Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-btatt.h
1 /* packet-btaatt.h
2  * Headers for ATT
3  *
4  * Copyright 2015, Michal Labedzki for Tieto Corporation
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef __PACKET_BTATT_H__
14 #define __PACKET_BTATT_H__
15 
16 #include <epan/expert.h>
17 
18 typedef struct _btatt_data_t {
19  bluetooth_data_t *bluetooth_data;
20 
21  guint8 opcode;
22 } btatt_data_t;
23 
24 
25 typedef struct _tap_handles_t {
26  guint32 handle;
27  bluetooth_uuid_t uuid;
29 
30 
31 extern const value_string btatt_ips_coordinate_system[];
32 extern const value_string btatt_ips_uncertainty_stationary_vals[];
33 extern const value_string btatt_ips_uncertainty_update_time_vals[];
34 extern const value_string btatt_ips_uncertainty_precision_vals[];
35 extern const value_string btatt_ips_uncertainty_coordinate_system[];
36 extern const value_string tds_organization_id_vals[];
37 
38 WS_DLL_PUBLIC gboolean bluetooth_gatt_has_no_parameter(guint8 opcode);
39 WS_DLL_PUBLIC expert_field ei_btatt_invalid_usage;
40 
41 #endif
42 
43 /*
44  * Editor modelines - http://www.wireshark.org/tools/modelines.html
45  *
46  * Local variables:
47  * c-basic-offset: 4
48  * tab-width: 8
49  * indent-tabs-mode: nil
50  * End:
51  *
52  * vi: set shiftwidth=4 tabstop=8 expandtab:
53  * :indentSize=4:tabSize=8:noTabs=true:
54  */
Definition: packet-bluetooth.h:94
Definition: packet-bluetooth.h:175
Definition: packet-btatt.h:25
Definition: expert.h:37
Definition: value_string.h:24
Definition: packet-btatt.h:18