Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-hsfz.h
1 /* packet-hsfz.h
2  * HSFZ Dissector
3  * By Dr. Lars Voelker <lars.voelker@technica-engineering.de>
4  * Copyright 2013-2019 BMW Group, Dr. Lars Voelker
5  * Copyright 2020-2023 Technica Engineering, Dr. Lars Voelker
6  * Copyright 2023-2023 BMW Group, Hermann Leinsle
7  *
8  * Wireshark - Network traffic analyzer
9  * By Gerald Combs <gerald@wireshark.org>
10  * Copyright 1998 Gerald Combs
11  *
12  * SPDX-License-Identifier: GPL-2.0-or-later
13  */
14 
15 #ifndef __PACKET_HSFZ_H__
16 #define __PACKET_HSFZ_H__
17 
18 typedef struct hsfz_info {
19  guint8 target_address;
20  guint8 source_address;
21 } hsfz_info_t;
22 
23 #endif /* __PACKET_HSFZ_H__ */
24 
25 /*
26  * Editor modelines - https://www.wireshark.org/tools/modelines.html
27  *
28  * Local variables:
29  * c-basic-offset: 4
30  * tab-width: 8
31  * indent-tabs-mode: nil
32  * End:
33  *
34  * vi: set shiftwidth=4 tabstop=8 expandtab:
35  * :indentSize=4:tabSize=8:noTabs=true:
36  */
Definition: packet-hsfz.h:18