X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FInvestigate.pm;h=811d6380386f5ede159e0aac4b7c4b3ba0f54f09;hb=24550808f9ee4ba5cf6a720bb364977f7ed586af;hp=d59a57b5a1ba17f976d2fe47660366076510e400;hpb=23d5848190b73200389fdfc2291e3453b3b91b15;p=spider.git diff --git a/perl/Investigate.pm b/perl/Investigate.pm index d59a57b5..811d6380 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,13 +88,14 @@ 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) { $user->set_believe($self->{call}); $user->put; } - my $dxchan = DXChannel->get($self->{via}); + my $dxchan = DXChannel::get($self->{via}); if ($dxchan) { dbg("Investigate: sending PC19 for $self->{call}") if isdbg('investigate'); foreach my $pc (@{$self->{pcxx}}) { @@ -120,11 +122,13 @@ sub process { while (my ($k, $v) = each %list) { if ($v->{state} eq 'start') { - if ($main::systime > $lastping+$pingint) { - DXProt::addping($main::mycall, $v->{call}, $v->{via}); + my $via = $via{$v->{via}} || 0; + if ($main::systime > $via+$pingint) { + DXXml::Ping::add($main::me, $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) {