Net-DNSBL-MultiDaemon
view release on metacpan or search on metacpan
MultiDaemon.pm view on Meta::CPAN
$rv = 'blacklisted';
}
}
) {
$comment = $rv;
}
elsif ($rip eq '2.0.0.127') { # checkfor DNSBL test
($msg) = _ansrbak($put,$id,1,$rip,$zone,$type,3600,A1272,$BLzone,$myip,'DNSBL test response to 127.0.0.2');
$comment = 'just testing';
}
### NOTE, $now does not get updated very often if the host is busy processing in this routine, but at least every 5 minutes.... good enough
elsif ( $csize && # cacheing enabled
exists $cache{$rip} && # item exists in cache
($expires = $cache{$rip}->{expires}) > $now ) { # cache not expired
$cache{$rip}->{used} = $now; # update last used time
my $blist_0 = $cache{$rip}->{who};
my $txt = $cache{$rip}->{txt};
$txt = $txt ? $txt . $targetIP : '';
($msg) = _ansrbak($put,$id,1,$rip,$zone,$type,$expires - $now,A1272,$BLzone,$myip,$txt); # send cached record
$comment = 'cache record';
bump_stats($STATs,$blist_0);
MultiDaemon.pm view on Meta::CPAN
if ($DEBUG & $D_VERBOSE) {
if ($answer) {
print STDERR ' ',inet_ntoa($answer),"\n";
} else {
print STDERR " no bl\n";
}
}
last;
}
}
##################### TIMEOUT, do busywork #######################
else { # must be timeout
my $prpshadow = $prp;
$now = time; # check various alarm status
unless ($now < $next) {
average($STATs);
purge_cache() if $prp < 0; # initiate cache purge every 5 minutes or so
}
purge_cache() unless $prpshadow < 0; # run cache purge thread unless just initiated
foreach $rid (keys %remoteThreads) {
next unless $remoteThreads{$rid}->{expire} < $now; # expired??
( run in 0.317 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )