Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-lin.h
blobb6c4ecefccd0703e0a837348b657086fca677874
1 /* packet-lin.h
3 * Definitions for LIN
4 * By Dr. Lars Voelker <lars.voelker@technica-engineering.de> / <lars.voelker@bmw.de>
5 * Copyright 2021-2023 Dr. Lars Voelker
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * SPDX-License-Identifier: GPL-2.0-or-later
14 #ifndef __PACKET_LIN_H__
15 #define __PACKET_LIN_H__
17 #define LIN_DIAG_MASTER_REQUEST_FRAME 0x3c
18 #define LIN_DIAG_SLAVE_RESPONSE_FRAME 0x3d
19 #define LIN_ID_MASK 0x3f
21 /* bus_id 0 means ANY Bus */
22 struct lin_info {
23 uint32_t id;
24 uint16_t bus_id;
25 uint16_t len;
28 typedef struct lin_info lin_info_t;
30 bool lin_set_source_and_destination_columns(packet_info* pinfo, lin_info_t *lininfo);
32 #endif /* __PACKET_LIN_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: