Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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 <[email protected]>
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
19{
20 uint16_t Id;
21 uint16_t Hash;
22 uint16_t Length;
23 uint16_t Quality;
25#define ETYPE_88A4_NV_DATA_HEADER_Len (int)sizeof(ETYPE_88A4_NV_DATA_HEADER)
30typedef struct _NvParserHDR
31{
32 uint8_t Publisher[6];
33 uint16_t CountNV;
34 uint16_t CycleIndex;
35 uint16_t Reserved;
37#define NvParserHDR_Len (int)sizeof(NvParserHDR)
39#endif /* _PACKET_NV_H_*/
Platform-independent header describing a single EtherType 0x88A4 non-volatile data entry; layout is f...
Definition packet-nv.h:19
uint16_t Quality
Definition packet-nv.h:23
uint16_t Id
Definition packet-nv.h:20
uint16_t Hash
Definition packet-nv.h:21
uint16_t Length
Definition packet-nv.h:22
Parser header for an EtherType 0x88A4 NV (non-volatile) data frame, preceding one or more ETYPE_88A4_...
Definition packet-nv.h:31
uint8_t Publisher[6]
Definition packet-nv.h:32
uint16_t CountNV
Definition packet-nv.h:33
uint16_t CycleIndex
Definition packet-nv.h:34
uint16_t Reserved
Definition packet-nv.h:35