Wireshark  4.3.0
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 extern const value_string characteristic_presentation_namespace_description_btsig_vals[];
38 
39 WS_DLL_PUBLIC gboolean bluetooth_gatt_has_no_parameter(guint8 opcode);
40 WS_DLL_PUBLIC expert_field ei_btatt_invalid_usage;
41 
42 #endif
43 
44 /*
45  * Editor modelines - https://www.wireshark.org/tools/modelines.html
46  *
47  * Local variables:
48  * c-basic-offset: 4
49  * tab-width: 8
50  * indent-tabs-mode: nil
51  * End:
52  *
53  * vi: set shiftwidth=4 tabstop=8 expandtab:
54  * :indentSize=4:tabSize=8:noTabs=true:
55  */
Definition: packet-bluetooth.h:96
Definition: packet-btatt.h:18
Definition: packet-btatt.h:25
Definition: packet-bluetooth.h:190
Definition: value_string.h:26
Definition: expert.h:39