blob: 828aba568711179f9aef57ae00d8c08dde8f02dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* packet-dpaux.h
* Definitions for packet disassembly structures and routines
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PACKET_DPAUX_H
#define PACKET_DPAUX_H
struct dpaux_info {
gboolean from_source;
};
#endif
|