function _get_record_v6 in Smart IP 7.2
Same name and namespace in other branches
- 6.2 includes/geoipcity.inc \_get_record_v6()
1 call to _get_record_v6()
- GeoIP_record_by_addr_v6 in includes/
geoipcity.inc
File
- includes/
geoipcity.inc, line 119
Code
function _get_record_v6($gi, $ipnum) {
$seek_country = _geoip_seek_country_v6($gi, $ipnum);
if ($seek_country == $gi->databaseSegments) {
return NULL;
}
return _common_get_record($gi, $seek_country);
}