X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FInvestigate.pm;h=5fce74b652d4102bf201953e46529f55a186d82b;hb=b70be747913c158cb53bc6f7277f803f93bbb98d;hp=d59a57b5a1ba17f976d2fe47660366076510e400;hpb=6bcc8c5655882b27482f538335ba6e0083f3f3cc;p=spider.git diff --git a/perl/Investigate.pm b/perl/Investigate.pm index d59a57b5..5fce74b6 100644 --- a/perl/Investigate.pm +++ b/perl/Investigate.pm @@ -47,6 +47,7 @@ my $lastping = 0; # last ping done pcxx => '0,Stored PCProt,parray', ); +my %via = (); sub new { @@ -87,6 +88,7 @@ sub handle_ping my $self = shift; dbg("Investigate: ping received for $self->{call} via $self->{via}") if isdbg('investigate'); if ($self->{state} eq 'waitping') { + $via{$self->{via}} = 0; # cue up next ping on this interface delete $list{"$self->{via},$self->{call}"}; my $user = DXUser->get_current($self->{via}); if ($user) { @@ -120,11 +122,13 @@ sub process { while (my ($k, $v) = each %list) { if ($v->{state} eq 'start') { - if ($main::systime > $lastping+$pingint) { + my $v = $via{$v->{via}} || 0; + if ($main::systime > $v+$pingint) { DXProt::addping($main::mycall, $v->{call}, $v->{via}); $v->{start} = $lastping = $main::systime; dbg("Investigate: ping sent to $v->{call} via $v->{via}") if isdbg('investigate'); $v->chgstate('waitping'); + $via{$v->{via}} = $main::systime; } } elsif ($v->{state} eq 'waitping') { if ($main::systime > $v->{start} + $maxpingwait) {