Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-tecmp.h
1  /* packet-tecmp.h
2  *
3  * Definitions for TECMP
4  * By Dr. Lars Voelker <lars.voelker@technica-engineering.de>
5  * Copyright 2022-2022 Dr. Lars Voelker
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * SPDX-License-Identifier: GPL-2.0-or-later
12  */
13 
14 #ifndef __PACKET_TECMP_H__
15 #define __PACKET_TECMP_H__
16 
17 #define TECMP_PAYLOAD_INTERFACE_ID "tecmp.payload.interface_id"
18 
19 typedef struct tecmp_info {
20  guint32 interface_id;
21  guint16 device_id;
22  guint16 data_type;
23  guint8 msg_type;
24 } tecmp_info_t;
25 
26 #endif /* __PACKET_TECMP_H__ */
27 
28 /*
29  * Editor modelines
30  *
31  * Local Variables:
32  * c-basic-offset: 4
33  * tab-width: 8
34  * indent-tabs-mode: nil
35  * End:
36  *
37  * ex: set shiftwidth=4 tabstop=8 expandtab:
38  * :indentSize=4:tabSize=8:noTabs=true:
39  */
Definition: packet-tecmp.h:19