wireshark/epan/introspection.h

32 lines
723 B
C
Raw Normal View History

/*
* 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 _INTROSPECTION_H_
#define _INTROSPECTION_H_
#include <ws_symbol_export.h>
typedef struct {
const char *symbol;
int value;
} ws_enum_t;
/** 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 *epan_inspect_enums(void);
#endif