X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCIDR.pm;h=a91d13967cf7c3db845e6e49df1c954c9fd1ba53;hb=7e7131f3574cd4a3a4183251b35c9d91e43a6a39;hp=fdade7fc8989bae6d17fad741ff636604c0d2938;hpb=f8de8b2dedec09d040a107af6bb82e31e4667c87;p=spider.git diff --git a/perl/DXCIDR.pm b/perl/DXCIDR.pm index fdade7fc..a91d1396 100644 --- a/perl/DXCIDR.pm +++ b/perl/DXCIDR.pm @@ -82,20 +82,21 @@ sub _put sub append { + return 0 unless $active; + my $suffix = shift; my @in = @_; my @out; if ($suffix) { my $fn = _fn() . ".$suffix"; - my $r = rand; - my $fh = IO::File->new (">>$fn.$r"); - if ($fh) { + my $fh = IO::File->new; + if ($fh->open("$fn", "a+")) { + $fh->seek(0, 2); # belt and braces !! print $fh "$_\n" for @in; $fh->close; - move "$fn.$r", $fn; } else { - LogDbg('err', "DXCIDR::append error appending to $fn.$r $!"); + LogDbg('err', "DXCIDR::append error appending to $fn $!"); } } else { LogDbg('err', "DXCIDR::append require badip suffix"); @@ -105,6 +106,7 @@ sub append sub add { + return 0 unless $active; my $count = 0; for my $ip (@_) { @@ -128,6 +130,8 @@ sub add sub clean_prep { + return unless $active; + if ($ipv4 && $count4) { $ipv4->clean; $ipv4->prep_find; @@ -151,6 +155,7 @@ sub _sort sub list { + return () unless $active; my @out; push @out, $ipv4->list if $count4; push @out, $ipv6->list if $count6; @@ -200,6 +205,8 @@ sub _touch sub reload { + return 0 unless $active; + new(); my $count = 0; @@ -225,6 +232,8 @@ sub reload sub new { + return 0 unless $active; + $ipv4 = Net::CIDR::Lite->new; $ipv6 = Net::CIDR::Lite->new; $count4 = $count6 = 0;