3 * Wireshark Protocol Analyzer Library
5 * Copyright (c) 2001 by Gerald Combs <gerald@wireshark.org>
7 * SPDX-License-Identifier: GPL-2.0-or-later
10 #ifndef EPAN_DISSECT_H
11 #define EPAN_DISSECT_H
16 #include "packet_info.h"
20 #endif /* __cplusplus */
22 /* Dissection of a single byte array. Holds tvbuff info as
23 * well as proto_tree info. As long as the epan_dissect_t for a byte
24 * array is in existence, you must not free or move that byte array,
25 * as the structures that the epan_dissect_t contains might have pointers
26 * to addresses in your byte array.
29 struct epan_session
*session
;
37 #endif /* __cplusplus */
39 #endif /* EPAN_DISSECT_H */
42 * Editor modelines - https://www.wireshark.org/tools/modelines.html
50 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
51 * :indentSize=8:tabSize=8:noTabs=false: