Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-iso15765.h
blob7c69629e05691d51c689f790a3908a3855fc9023
1 /* packet-iso15765.h
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef __PACKET_ISO15765_H__
11 #define __PACKET_ISO15765_H__
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
22 typedef struct _iso15765_info {
23 uint32_t bus_type;
24 uint32_t id;
25 uint32_t len;
26 uint16_t target_address;
27 uint16_t source_address;
28 uint8_t number_of_addresses_valid;
29 uint8_t address_length;
30 } iso15765_info_t;
32 #endif /* __PACKET_ISO15765_H__ */
35 * Editor modelines - https://www.wireshark.org/tools/modelines.html
37 * Local variables:
38 * c-basic-offset: 4
39 * tab-width: 8
40 * indent-tabs-mode: nil
41 * End:
43 * vi: set shiftwidth=4 tabstop=8 expandtab:
44 * :indentSize=4:tabSize=8:noTabs=true: