tvbuff_composite: fix buffer overflow due to wrong offset adjustment
[metze/wireshark/wip.git] / epan / iana_charsets.h
1 /* iana_charsets.h
2  *
3  * Declarations for IANA-registered character sets
4  *
5  *    http://www.iana.org/assignments/character-sets/character-sets.xhtml
6  *
7  * Wireshark - Network traffic analyzer
8  * By Gerald Combs <gerald@wireshark.org>
9  * Copyright 1998 Gerald Combs
10  *
11  * WAP dissector based on original work by Ben Fowler
12  * Updated by Neil Hunter <neil.hunter@energis-squared.com>
13  * WTLS support by Alexandre P. Ferreira (Splice IP)
14  *
15  * SPDX-License-Identifier: GPL-2.0-or-later
16  */
17
18 #ifndef __IANA_CHARSETS_H__
19 #define __IANA_CHARSETS_H__
20
21 /* Map a MIBenum code for a charset to a Wireshark string encoding. */
22 WS_DLL_PUBLIC guint mibenum_charset_to_encoding (guint charset);
23
24 /* value_string_ext table of names for MIBenum codes */
25 WS_DLL_PUBLIC value_string_ext mibenum_vals_character_sets_ext;
26
27 #endif /* iana_charsets.h */