3 * Routines to put exception information into the protocol tree
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 2000 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 #ifndef __SHOW_EXCEPTION_H__
13 #define __SHOW_EXCEPTION_H__
16 * Called to register the pseudo-protocols used for exceptions.
18 void register_show_exception(void);
21 * Routine used to add an indication of an arbitrary exception to the tree.
24 void show_exception(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
,
25 unsigned long exception
, const char *exception_message
);
28 * Routine used to add an indication of a ReportedBoundsError exception
32 show_reported_bounds_error(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
);
34 #endif /* __SHOW_EXCEPTION_H__ */