ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] [Wireshark-commits] rev 53826: /trunk/epan/ /trunk/epan/: ch

From: Jakub Zawadzki <darkjames-ws@xxxxxxxxxxxx>
Date: Sun, 8 Dec 2013 02:59:40 +0100
On Sat, Dec 07, 2013 at 04:53:51PM -0800, Guy Harris wrote:
> 
> On Dec 7, 2013, at 7:02 AM, darkjames@xxxxxxxxxxxxx wrote:
> 
> > http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=53826
> > 
> > User: darkjames
> > Date: 2013/12/07 03:02 PM
> > 
> > Log:
> > Add string encoding for ISO/IEC 8859-2 (ENC_ISO_8859_2)
> 
> Should code points in the range 0x80-0x9F map to 0x80-0x9F?

$ for ((i = 128; i <= 255; i++)); do echo -en "\x`printf %x $i`"; done | iconv -f iso-8859-2 -t ucs-2 | hexdump   ## XXX: can it be done easier?
0000000 0080 0081 0082 0083 0084 0085 0086 0087
0000010 0088 0089 008a 008b 008c 008d 008e 008f
0000020 0090 0091 0092 0093 0094 0095 0096 0097
0000030 0098 0099 009a 009b 009c 009d 009e 009f

It's OK for me. Thanks.