|
Wireshark 4.7.0
The Wireshark network protocol analyzer
|
Go to the source code of this file.
Functions | |
| WS_DLL_PUBLIC const ws_enum_t * | epan_inspect_enums (void) |
| Returns a list of all Wireshark enums. 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 size_t | epan_inspect_enums_count (void) |
| Returns size of enums array not including null terminator. | |
| WS_DLL_PUBLIC const ws_enum_t * | epan_inspect_enums_bsearch (const char *needle) |
| Performs a binary search in the enums for the magic constant "needle". | |
Copyright 2021, João Valverde j@v6e.nosp@m..pt
Wireshark - Network traffic analyzer By Gerald Combs geral.nosp@m.d@wi.nosp@m.resha.nosp@m.rk.o.nosp@m.rg Copyright 1998 Gerald Combs
SPDX-License-Identifier: GPL-2.0-or-later
| WS_DLL_PUBLIC const ws_enum_t * epan_inspect_enums | ( | void | ) |
Returns a list of all Wireshark enums. 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 * epan_inspect_enums_bsearch | ( | const char * | needle | ) |
Performs a binary search in the enums for the magic constant "needle".
| needle | The string to search for in the enumeration table. |
| WS_DLL_PUBLIC size_t epan_inspect_enums_count | ( | void | ) |
Returns size of enums array not including null terminator.