Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-isobus.h
blob30ec6049d23c4e86c2fd8cf91a0bcafcda834b8d
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
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef __PACKET_ISOBUS_H__
14 #define __PACKET_ISOBUS_H__
16 #include <epan/tvbuff.h>
17 //#include <epan/packet_info.h>
18 //#include <epan/proto.h>
20 /* Structure that gets passed between dissectors. */
21 typedef struct isobus_info {
22 uint32_t can_id;
23 uint16_t bus_id;
25 uint8_t priority;
26 uint8_t pdu_format;
27 uint32_t pgn;
28 uint8_t source_addr;
29 } isobus_info_t;
31 #endif /* __PACKET_ISOBUS_H__ */
34 * Editor modelines - https://www.wireshark.org/tools/modelines.html
36 * Local variables:
37 * c-basic-offset: 4
38 * tab-width: 8
39 * indent-tabs-mode: nil
40 * End:
42 * vi: set shiftwidth=4 tabstop=8 expandtab:
43 * :indentSize=4:tabSize=8:noTabs=true: