diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-06-11 15:47:44 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-06-11 15:47:44 -0700 |
commit | 3dd9240cc311f3c617d68764a6e6a1a21a77c6a6 (patch) | |
tree | ef08093422e4db1e2830542edf6f0a44e5d4726e /INSTALL.txt | |
parent | 7e17343965b7275367a4f0ceb90969867f3f1410 (diff) | |
download | tcpdump-3dd9240cc311f3c617d68764a6e6a1a21a77c6a6.tar.gz |
Do case-insensitive comparisons assuming ASCII strings.
Do the case-insensitive comparisons in a locale-independent fashion that
only maps ASCII letters, in the standard English-language fashion; that
way, we don't get bitten by, for example, Turkish having separate "i
with dot" and "i without dot" letters, with lower-case "i with dot" being
mapped to upper-case "I with dot" rather than being mapped to "I".
Diffstat (limited to 'INSTALL.txt')
-rw-r--r-- | INSTALL.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/INSTALL.txt b/INSTALL.txt index 2abadd6e..5aefc458 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -49,6 +49,8 @@ addrtoname.c - address to hostname routines addrtoname.h - address to hostname definitions ah.h - IPSEC Authentication Header definitions appletalk.h - AppleTalk definitions +ascii_strcasecmp.c - locale-independent case-independent string comparison + routines atime.awk - TCP ack awk script atm.h - ATM traffic type definitions bpf_dump.c - BPF program printing routines, in case libpcap doesn't @@ -202,7 +204,6 @@ slcompress.h - SLIP/PPP Van Jacobson compression (RFC1144) definitions smb.h - SMB/CIFS definitions smbutil.c - SMB/CIFS utility routines stime.awk - TCP send awk script -strcasecmp.c - missing routine tcp.h - TCP definitions tcpdump.1 - manual entry tcpdump.c - main program |