decrypt drsuapi attributes
[wireshark-sm.git] / epan / show_exception.h
blobe07035e2e0d04f58125d31667ad895925f1b8aed
1 /** @file
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.
23 WS_DLL_PUBLIC
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
29 * to the tree.
31 void
32 show_reported_bounds_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
34 #endif /* __SHOW_EXCEPTION_H__ */