don't print GeoIP country if not defined

If we don't get a result from the lookup, all we know is that we didn't get a result. Maybe an error, maybe the IP not in the database.
This commit is contained in:
Matt Simerson 2012-04-22 17:00:53 -04:00 committed by Robert
parent 005c4d9105
commit 651ca986ff

View File

@ -20,7 +20,8 @@ sub hook_connect {
my $geoip = Geo::IP->new(GEOIP_STANDARD);
my $country =
$geoip->country_code_by_addr( $self->qp->connection->remote_ip );
$geoip->country_code_by_addr( $self->qp->connection->remote_ip )
or return (DECLINED);
$self->qp->connection->notes('geoip_country', $country);
$self->log(LOGNOTICE, "GeoIP Country: $country");