aboutsummaryrefslogtreecommitdiffstats
path: root/epan/introspection.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/introspection.c')
-rw-r--r--epan/introspection.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/epan/introspection.c b/epan/introspection.c
new file mode 100644
index 0000000000..4499b74114
--- /dev/null
+++ b/epan/introspection.c
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2021, João Valverde <j@v6e.pt>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+#include "config.h"
+#include "introspection.h"
+#include <string.h>
+#include <stdlib.h>
+
+#include "introspection-enums.c"
+
+const ws_enum_t *epan_inspect_enums(void)
+{
+ return all_enums;
+}
+
+size_t epan_inspect_enums_count(void)
+{
+ /* Exclude null terminator */
+ return sizeof(all_enums)/sizeof(ws_enum_t) - 1;
+}
+
+const ws_enum_t *epan_inspect_enums_bsearch(const char *needle)
+{
+ return ws_enums_bsearch(all_enums, epan_inspect_enums_count(), needle);
+}