aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/introspection.h
blob: c12bbcf59dc989c1d4f895d915b7dc754f5108e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/** @file
 * 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
 */

#ifndef _WTAP_INTROSPECTION_H_
#define _WTAP_INTROSPECTION_H_

#include <stddef.h>
#include <ws_symbol_export.h>
#include <wsutil/introspection.h>

/** Returns an array of ws_enum_t elements. The array is sorted and
 * ends with {NULL, 0}.
 *
 * It can be used by language bindings to the Wireshark API to obtain
 * the value of some magic constants. The array can be binary searched,
 * imported to a hash table, serialized, etc.
 */
WS_DLL_PUBLIC
const ws_enum_t *wtap_inspect_enums(void);

/** Returns size of enums array not including null terminator. */
WS_DLL_PUBLIC
size_t wtap_inspect_enums_count(void);

/** Performs a binary search for the magic constant "needle". */
WS_DLL_PUBLIC
const ws_enum_t *wtap_inspect_enums_bsearch(const char *needle);

#endif