Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-bacapp.h
1 /* packet-bacapp.h
2  * by fkraemer, SAUTER
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __PACKET_BACAPP_H__
12 #define __PACKET_BACAPP_H__
13 
14 #define BACINFO_SERVICE 0
15 #define BACINFO_INVOKEID 1
16 #define BACINFO_INSTANCEID 2
17 #define BACINFO_OBJECTID 4
18 
19 
20 /* Used for BACnet statistics */
21 typedef struct _bacapp_info_value_t {
22  const gchar *service_type;
23  const gchar *invoke_id;
24  const gchar *instance_ident;
25  const gchar *object_ident;
27 
28 #endif /* __PACKET_BACNET_H__ */
29 
30 /*
31  * Editor modelines - http://www.wireshark.org/tools/modelines.html
32  *
33  * Local variables:
34  * c-basic-offset: 4
35  * tab-width: 8
36  * indent-tabs-mode: nil
37  * End:
38  *
39  * vi: set shiftwidth=4 tabstop=8 expandtab:
40  * :indentSize=4:tabSize=8:noTabs=true:
41  */
Definition: packet-bacapp.h:21