Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
show_exception.h
Go to the documentation of this file.
1
12#ifndef __SHOW_EXCEPTION_H__
13#define __SHOW_EXCEPTION_H__
14
15#include <epan/proto.h>
16
17/*
18 * Called to register the pseudo-protocols used for exceptions.
19 */
20void register_show_exception(void);
21
22/*
23 * Routine used to add an indication of an arbitrary exception to the tree.
24 */
25WS_DLL_PUBLIC
26void show_exception(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
27 unsigned long exception, const char *exception_message);
28
29/*
30 * Routine used to add an indication of a ReportedBoundsError exception
31 * to the tree.
32 */
33WS_DLL_PUBLIC void
34show_reported_bounds_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);
35
36#endif /* __SHOW_EXCEPTION_H__ */
Definition packet_info.h:43
Definition proto.h:907
Definition tvbuff-int.h:36