blob: 78aded6731aff6ef0f03fd3356eec6a636ed34f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* packet-reload.h
* RELOAD dissection utilities
* Author: Stephane Bryant
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __PACKET_RELOAD_H__
#define __PACKET_RELOAD_H__
extern gint dissect_reload_messagecontents(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guint16 offset, guint16 length);
#endif
|