Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-iso15765.h
1/* packet-iso15765.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
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
22typedef 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;
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