Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-hsfz.h
1/* packet-hsfz.h
2 * HSFZ Dissector
3 * By Dr. Lars Voelker <[email protected]>
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 <[email protected]>
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
18typedef struct hsfz_info {
19 uint8_t target_address;
20 uint8_t source_address;
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