Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-iso15765.h
1 /* packet-iso15765.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __PACKET_ISO15765_H__
11 #define __PACKET_ISO15765_H__
12 
13 #define ISO15765_TYPE_NONE 0
14 #define ISO15765_TYPE_CAN 1
15 #define ISO15765_TYPE_CAN_FD 2
16 #define ISO15765_TYPE_LIN 3
17 #define ISO15765_TYPE_FLEXRAY 4
18 #define ISO15765_TYPE_IPDUM 5
19 #define ISO15765_TYPE_PDU_TRANSPORT 6
20 
21 
22 typedef struct _iso15765_info {
23  guint32 bus_type;
24  guint32 id;
25  guint32 len;
26  guint16 target_address;
27  guint16 source_address;
28  guint8 number_of_addresses_valid;
29  guint8 address_length;
31 
32 #endif /* __PACKET_ISO15765_H__ */
33 
34 /*
35  * Editor modelines - https://www.wireshark.org/tools/modelines.html
36  *
37  * Local variables:
38  * c-basic-offset: 4
39  * tab-width: 8
40  * indent-tabs-mode: nil
41  * End:
42  *
43  * vi: set shiftwidth=4 tabstop=8 expandtab:
44  * :indentSize=4:tabSize=8:noTabs=true:
45  */
Definition: packet-iso15765.h:22