Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-isobus.h
1 /* packet-isobus.h
2  * Definitions for ISOBUS packet disassembly structures and routines
3  * By Dr. Lars Voelker <lars.voelker@technica-engineering.de>
4  * Copyright 2023 Dr. Lars Voelker
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_ISOBUS_H__
14 #define __PACKET_ISOBUS_H__
15 
16 #include <epan/tvbuff.h>
17 //#include <epan/packet_info.h>
18 //#include <epan/proto.h>
19 
20 /* Structure that gets passed between dissectors. */
21 typedef struct isobus_info {
22  guint32 can_id;
23  guint16 bus_id;
24 
25  guint8 priority;
26  guint8 pdu_format;
27  guint32 pgn;
28  guint8 source_addr;
30 
31 #endif /* __PACKET_ISOBUS_H__ */
32 
33  /*
34  * Editor modelines - https://www.wireshark.org/tools/modelines.html
35  *
36  * Local variables:
37  * c-basic-offset: 4
38  * tab-width: 8
39  * indent-tabs-mode: nil
40  * End:
41  *
42  * vi: set shiftwidth=4 tabstop=8 expandtab:
43  * :indentSize=4:tabSize=8:noTabs=true:
44  */
Definition: packet-isobus.h:21