Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
show_exception.h
1 /* show_exception.h
2  *
3  * Routines to put exception information into the protocol tree
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 2000 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 /*
13  * Called to register the pseudo-protocols used for exceptions.
14  */
15 void register_show_exception(void);
16 
17 /*
18  * Routine used to add an indication of an arbitrary exception to the tree.
19  */
20 WS_DLL_PUBLIC
21 void show_exception(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
22  unsigned long exception, const char *exception_message);
23 
24 /*
25  * Routine used to add an indication of a ReportedBoundsError exception
26  * to the tree.
27  */
28 void
29 show_reported_bounds_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
Definition: packet_info.h:44
Definition: tvbuff-int.h:35
Definition: proto.h:759