From 6358754048dfd20624ab82815b3ec703bb035533 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 18 Oct 2011 06:50:20 +0000 Subject: [PATCH] Note some character encodings that can probably be used Real Soon Now, and the dissectors that deal with them. svn path=/trunk/; revision=39456 --- epan/proto.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/epan/proto.h b/epan/proto.h index 624229c182..301119211e 100644 --- a/epan/proto.h +++ b/epan/proto.h @@ -255,6 +255,25 @@ typedef struct _protocol protocol_t; #define ENC_ASCII 0x00000000 #define ENC_EBCDIC 0x0EBCD1C0 +/* + * TODO: + * + * These could probably be used by existing code: + * + * ENC_UTF_16 - UTF-16 + * ENC_UCS_4 - UCS-4 + * ENC_UCS_2 - UCS-2 (not the same as UTF-16!) + * ENC_ISO_8859_1 - ISO 8859/1 + * ENC_ISO_8859_8 - ISO 8859/8 + * - "IBM MS DBCS" + * - JIS C 6226 + * 7-bit encodings such as ETSI 03.38 (GSM SMS character set + * (see packet-ansi_337.c, packet-gsm_a_dtap.c, packet-gsm_map.c, + * packet-gsm_sms.c)? + * + * See also packet-bacapp.c. + */ + /* * For protocols (FT_PROTOCOL), aggregate items with subtrees (FT_NONE), * opaque byte-array fields (FT_BYTES), and other fields where there