aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dcerpc-nt.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2002-03-15 08:59:53 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2002-03-15 08:59:53 +0000
commit3a86a0c575c47b2b714b97f86553077e7cee5c68 (patch)
tree62bdd34d1321334a2bc3ca77988b1744f9263f5a /packet-dcerpc-nt.c
parent0a923ecac12f18b93a5208da55e5063e175642c2 (diff)
Moved the value_string for MS country codes from packet-dcerpc-nt.c to
packet-smb.c so that packet-smb-pipe.c can reference this struct as well. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4947 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-dcerpc-nt.c')
-rw-r--r--packet-dcerpc-nt.c112
1 files changed, 1 insertions, 111 deletions
diff --git a/packet-dcerpc-nt.c b/packet-dcerpc-nt.c
index 9dc30a896f..205bb6cd50 100644
--- a/packet-dcerpc-nt.c
+++ b/packet-dcerpc-nt.c
@@ -2,7 +2,7 @@
* Routines for DCERPC over SMB packet disassembly
* Copyright 2001, Tim Potter <tpot@samba.org>
*
- * $Id: packet-dcerpc-nt.c,v 1.16 2002/03/14 10:04:02 sahlberg Exp $
+ * $Id: packet-dcerpc-nt.c,v 1.17 2002/03/15 08:59:52 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -663,113 +663,3 @@ dissect_ndr_nt_NTTIME (tvbuff_t *tvb, int offset,
return offset;
}
-
-/* These are the MS country codes from www.unicode.org/unicode/onlinedat/countries.html
- For countries that share teh same number I choose to use only the name of the largest
- country. Appologies for this. If this offends you, here is the table to change that.
-
- There might be more info in winnls.h for those that have wincompilers
-*/
-const value_string ms_country_codes[] = {
- { 1, "USA"},
- { 2, "Canada"},
- { 7, "Russia"},
- { 20, "Egypt"},
- { 27, "South Africa"},
- { 30, "Greece"},
- { 31, "Netherlands"},
- { 32, "Belgium"},
- { 33, "France"},
- { 34, "Spain"},
- { 36, "Hungary"},
- { 39, "Italy"},
- { 40, "Romania"},
- { 41, "Switzerland"},
- { 43, "Austria"},
- { 44, "United Kingdom"},
- { 45, "Denmark"},
- { 46, "Sweden"},
- { 47, "Norway"},
- { 48, "Poland"},
- { 49, "Germany"},
- { 51, "Peru"},
- { 52, "Mexico"},
- { 54, "Argentina"},
- { 55, "Brazil"},
- { 56, "Chile"},
- { 57, "Colombia"},
- { 58, "Venezuela"},
- { 60, "Malaysia"},
- { 62, "Australia"},
- { 63, "Philippines"},
- { 64, "New Zealand"},
- { 65, "Singapore"},
- { 66, "Thailand"},
- { 81, "Japan"},
- { 82, "South Korea"},
- { 84, "Viet Nam"},
- { 86, "China"},
- { 90, "Turkey"},
- { 91, "India"},
- { 92, "Pakistan"},
- {212, "Morocco"},
- {213, "Algeria"},
- {216, "Tunisia"},
- {218, "Libya"},
- {254, "Kenya"},
- {263, "Zimbabwe"},
- {298, "Faroe Islands"},
- {351, "Portugal"},
- {352, "Luxembourg"},
- {353, "Ireland"},
- {354, "Iceland"},
- {355, "Albania"},
- {358, "Finland"},
- {359, "Bulgaria"},
- {370, "Lithuania"},
- {371, "Latvia"},
- {372, "Estonia"},
- {374, "Armenia"},
- {375, "Belarus"},
- {380, "Ukraine"},
- {381, "Serbia"},
- {385, "Croatia"},
- {386, "Slovenia"},
- {389, "Macedonia"},
- {420, "Czech Republic"},
- {421, "Slovak Republic"},
- {501, "Belize"},
- {502, "Guatemala"},
- {503, "El Salvador"},
- {504, "Honduras"},
- {505, "Nicaragua"},
- {506, "Costa Rica"},
- {507, "Panama"},
- {591, "Bolivia"},
- {593, "Ecuador"},
- {595, "Paraguay"},
- {598, "Uruguay"},
- {673, "Brunei Darussalam"},
- {852, "Hong Kong"},
- {853, "Macau"},
- {886, "Taiwan"},
- {960, "Maldives"},
- {961, "Lebanon"},
- {962, "Jordan"},
- {963, "Syria"},
- {964, "Iraq"},
- {965, "Kuwait"},
- {966, "Saudi Arabia"},
- {967, "Yemen"},
- {968, "Oman"},
- {972, "Israel"},
- {973, "Bahrain/United Arab Emirates"},
- {974, "Qatar"},
- {976, "Mongolia"},
- {981, "Iran"},
- {994, "Azerbaijan"},
- {995, "Georgia"},
- {996, "Kyrgyzstan"},
-
- {0, NULL}
-};