1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-29 00:20:24 -05:00

Moved application into webfront core project

This commit is contained in:
RaidMax
2018-02-27 21:27:23 -06:00
parent 2a6878351b
commit 370c9ede04
50 changed files with 45 additions and 5235 deletions

View File

@ -59,7 +59,7 @@ namespace CountryLookupProj
fileInput = new FileStream(fileName, FileMode.Open, FileAccess.Read);
}
public string lookupCountryCode(string str)
public string LookupCountryCode(string str)
{
IPAddress addr;
try
@ -70,10 +70,10 @@ namespace CountryLookupProj
{
return "--";
}
return lookupCountryCode(addr);
return LookupCountryCode(addr);
}
private long addrToNum(IPAddress addr)
private long AddrToNum(IPAddress addr)
{
long ipnum = 0;
byte[] b = BitConverter.GetBytes(addr.Address);
@ -89,12 +89,12 @@ namespace CountryLookupProj
return ipnum;
}
public string lookupCountryCode(IPAddress addr)
public string LookupCountryCode(IPAddress addr)
{
return (countryCode[(int)SeekCountry(0, addrToNum(addr), 31)]);
return (countryCode[(int)SeekCountry(0, AddrToNum(addr), 31)]);
}
public string lookupCountryName(string str)
public string LookupCountryName(string str)
{
IPAddress addr;
try
@ -105,12 +105,12 @@ namespace CountryLookupProj
{
return "a third world country";
}
return lookupCountryName(addr);
return LookupCountryName(addr);
}
public string lookupCountryName(IPAddress addr)
public string LookupCountryName(IPAddress addr)
{
return (countryName[(int)SeekCountry(0, addrToNum(addr), 31)]);
return (countryName[(int)SeekCountry(0, AddrToNum(addr), 31)]);
}
private long SeekCountry(long offset, long ipnum, int depth)