Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-nv.h
1 /* packet-nv.h
2  *
3  * Copyright (c) 2007 by Beckhoff Automation GmbH
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef _PACKET_NV_H_
13 #define _PACKET_NV_H_
14 
15 /* Ensure the same data layout for all platforms*/
17 {
18  uint16_t Id;
19  uint16_t Hash;
20  uint16_t Length;
21  uint16_t Quality;
23 #define ETYPE_88A4_NV_DATA_HEADER_Len (int)sizeof(ETYPE_88A4_NV_DATA_HEADER)
24 
25 typedef struct _NvParserHDR
26 {
27  uint8_t Publisher[6];
28  uint16_t CountNV;
29  uint16_t CycleIndex;
30  uint16_t Reserved;
31 } NvParserHDR;
32 #define NvParserHDR_Len (int)sizeof(NvParserHDR)
33 
34 #endif /* _PACKET_NV_H_*/
Definition: packet-nv.h:17
Definition: packet-nv.h:26