Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-isobus.h
1/* packet-isobus.h
2 * Definitions for ISOBUS packet disassembly structures and routines
3 * By Dr. Lars Voelker <[email protected]>
4 * Copyright 2023 Dr. Lars Voelker
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
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. */
21typedef struct isobus_info {
22 uint32_t can_id;
23 uint16_t bus_id;
24
25 uint8_t priority;
26 uint8_t pdu_format;
27 uint32_t pgn;
28 uint8_t 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