Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
plugins.h
Go to the documentation of this file.
1
11#ifndef __PLUGINS_H__
12#define __PLUGINS_H__
13
14#include <wireshark.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
20typedef void (*plugin_register_func)(void);
21typedef uint32_t (*plugin_describe_func)(void);
22
23typedef void plugins_t;
24
25typedef enum {
26 WS_PLUGIN_EPAN,
27 WS_PLUGIN_WIRETAP,
28 WS_PLUGIN_CODEC,
29 WS_PLUGIN_UI
30} plugin_type_e;
31
32#define WS_PLUGIN_DESC_DISSECTOR (1UL << 0)
33#define WS_PLUGIN_DESC_FILE_TYPE (1UL << 1)
34#define WS_PLUGIN_DESC_CODEC (1UL << 2)
35#define WS_PLUGIN_DESC_EPAN (1UL << 3)
36#define WS_PLUGIN_DESC_TAP_LISTENER (1UL << 4)
37#define WS_PLUGIN_DESC_DFILTER (1UL << 5)
38#define WS_PLUGIN_DESC_UI (1UL << 6)
39
40WS_DLL_PUBLIC plugins_t *plugins_init(plugin_type_e type, const char* app_env_var_prefix);
41
42typedef void (*plugin_description_callback)(const char *name, const char *version,
43 uint32_t flags, const char *filename,
44 void *user_data);
45
46WS_DLL_PUBLIC void plugins_get_descriptions(plugin_description_callback callback, void *user_data);
47
48WS_DLL_PUBLIC void plugins_dump_all(void);
49
50WS_DLL_PUBLIC int plugins_get_count(void);
51
52WS_DLL_PUBLIC void plugins_cleanup(plugins_t *plugins);
53
54WS_DLL_PUBLIC bool plugins_supported(void);
55
62WS_DLL_PUBLIC bool is_plugin_filename(const char *filename);
63
64#ifdef __cplusplus
65}
66#endif /* __cplusplus */
67
68#endif /* __PLUGINS_H__ */
69
70/*
71 * Editor modelines
72 *
73 * Local Variables:
74 * c-basic-offset: 4
75 * tab-width: 8
76 * indent-tabs-mode: nil
77 * End:
78 *
79 * ex: set shiftwidth=4 tabstop=8 expandtab:
80 * :indentSize=4:tabSize=8:noTabs=true:
81 */
WS_DLL_PUBLIC bool is_plugin_filename(const char *filename)
Definition plugins.c:140