X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXXml%2FPing.pm;h=06d96ff617cff373e0487dad01f8021dbbaa2ecf;hb=f84b188c092d48648c16f3174b293b32d8f5bd6a;hp=21662dae5a7a009a885c466d46e4c3dc2e19025f;hpb=6d1745603b0d1bb463194999129713c978f4244f;p=spider.git diff --git a/perl/DXXml/Ping.pm b/perl/DXXml/Ping.pm index 21662dae..06d96ff6 100644 --- a/perl/DXXml/Ping.pm +++ b/perl/DXXml/Ping.pm @@ -118,16 +118,9 @@ sub handle_ping_reply $tochan->{pingave} = $tochan->{pingave} + (($t - $tochan->{pingave}) / 6); } $tochan->{nopings} = $nopings; # pump up the timer - if (my $ivp = Investigate::get($from, $fromdxchan->{call})) { - $ivp->handle_ping; - } - } elsif (my $rref = Route::Node::get($r->{to})) { - if (my $ivp = Investigate::get($from, $fromdxchan->{call})) { - $ivp->handle_ping; - } } - } - if ($dxchan->is_user) { + _handle_believe($from, $fromdxchan->{call}); + } elsif ($dxchan->is_user) { my $s = sprintf "%.2f", $t; my $ave = sprintf "%.2f", $tochan ? ($tochan->{pingave} || $t) : $t; $dxchan->send($dxchan->msg('pingi', $from, $s, $ave)) @@ -135,4 +128,18 @@ sub handle_ping_reply } } +sub _handle_believe +{ + my ($from, $via) = @_; + + if (my $ivp = Investigate::get($from, $via)) { + $ivp->handle_ping; + } else { + my $user = DXUser->get_current($from); + if ($user) { + $user->set_believe($via); + $user->put; + } + } +} 1;