You are here

function _get_org in Smart IP 6.2

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

File

includes/geoip.inc, line 706

Code

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