Wireshark 4.5.0
The Wireshark network protocol analyzer
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
packet-ioraw.h
1/* packet-ioraw.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#ifndef _PACKET_IORAW_H_
12#define _PACKET_IORAW_H_
13
14/* headers are only used for size and offset calculation*/
15typedef struct _IoRawParser
16{
17 uint32_t head;
19#define IoRawParserHDR_Len (int)sizeof(IoRawParserHDR)
20
21#endif /* _PACKET_IORAW_H_*/
Definition packet-ioraw.h:16