Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-tecmp.h
1 /* packet-tecmp.h
2 *
3 * Definitions for TECMP
4 * By Dr. Lars Voelker <[email protected]>
5 * Copyright 2022-2024 Dr. Lars Voelker
6 *
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <[email protected]>
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#define TECMP_DATA_TYPE "tecmp.data_type"
19
20typedef struct tecmp_info {
21 uint32_t interface_id;
22 uint16_t device_id;
23 uint16_t data_type;
24 uint16_t data_flags;
25 uint8_t msg_type;
27
28#endif /* __PACKET_TECMP_H__ */
29
30/*
31 * Editor modelines
32 *
33 * Local Variables:
34 * c-basic-offset: 4
35 * tab-width: 8
36 * indent-tabs-mode: nil
37 * End:
38 *
39 * ex: set shiftwidth=4 tabstop=8 expandtab:
40 * :indentSize=4:tabSize=8:noTabs=true:
41 */
Definition packet-tecmp.h:20