You are here

function _get_org_v6 in Smart IP 6.2

Same name and namespace in other branches
  1. 7.2 includes/geoip.inc \_get_org_v6()
1 call to _get_org_v6()
geoip_name_by_addr_v6 in includes/geoip.inc

File

includes/geoip.inc, line 698

Code

function _get_org_v6($gi, $ipnum) {
  $seek_org = _geoip_seek_country_v6($gi, $ipnum);
  if ($seek_org == $gi->databaseSegments) {
    return NULL;
  }
  return _common_get_org($gi, $seek_org);
}