4b02ffa920
Added two replacement natives for those two: geoip_code2_ex and geoip_code3_ex, could not modify the old natives without breaking backwards compatibility.
75 lines
2.1 KiB
PHP
Executable File
75 lines
2.1 KiB
PHP
Executable File
/* GeoIP module functions for AMX Mod X
|
|
by David "BAILOPAN" Anderson
|
|
(C)Copyrighted under the GNU General Public License, Version 2
|
|
*/
|
|
|
|
#if defined geoip_included
|
|
#endinput
|
|
#endif
|
|
#define _geoip_included
|
|
|
|
#if AMXX_VERSION_NUM >= 175
|
|
#pragma reqlib geoip
|
|
#if !defined AMXMODX_NOAUTOLOAD
|
|
#pragma loadlib geoip
|
|
#endif
|
|
#else
|
|
#pragma library geoip
|
|
#endif
|
|
|
|
/// IP addresses passed to these natives can contain ports, the ports will be ignored.
|
|
|
|
/**
|
|
* Lookup the two character country code for a given IP address.
|
|
* e.g: "US", "CA", etc.
|
|
*
|
|
* @param ip The IP address to lookup.
|
|
* @param result The result buffer. If the lookup does not succeed, the buffer is not modified.
|
|
* @return true on a successful lookup, false on a failed lookup.
|
|
*/
|
|
native bool:geoip_code2_ex(const ip[], result[3]);
|
|
|
|
/**
|
|
* Lookup the three character country code for a given IP address.
|
|
* e.g: "USA", "cAN", etc.
|
|
*
|
|
* @param ip The IP address to lookup.
|
|
* @param result The result buffer. If the lookup does not succeed, the buffer is not modified.
|
|
* @return true on a successful lookup, false on a failed lookup.
|
|
*/
|
|
native bool:geoip_code3_ex(const ip[], result[4]);
|
|
|
|
/**
|
|
* @deprecated
|
|
* Lookup the two character country code for a given IP address.
|
|
*
|
|
* @note This native will overflow the buffer by one cell on an unknown ip lookup!
|
|
* @note Use geoip_code2_ex instead!
|
|
*
|
|
* @param ip The IP address to lookup.
|
|
* @param result The result buffer.
|
|
*/
|
|
native geoip_code2(const ip[], ccode[3]);
|
|
|
|
/**
|
|
* @deprecated
|
|
* Lookup the three character country code for a given IP address.
|
|
*
|
|
* @note This native will overflow the buffer by one cell on an unknown ip lookup!
|
|
* @note Use geoip_code3_ex instead!
|
|
*
|
|
* @param ip The IP address to lookup.
|
|
* @param result The result buffer.
|
|
*/
|
|
native geoip_code3(const ip[], result[4]);
|
|
|
|
/**
|
|
* Lookup the full country name for the given IP address. Sets the buffer to "error" on
|
|
* an unsuccessful lookup.
|
|
*
|
|
* @param ip The IP address to lookup.
|
|
* @param result The result of the geoip lookup.
|
|
* @param len The maximum length of the result buffer.
|
|
*/
|
|
native geoip_country(const ip[], result[], len=45);
|