From a9cff23c7050696bfe1dee906157416c49739f07 Mon Sep 17 00:00:00 2001 From: minima Date: Fri, 7 Sep 2001 23:11:18 +0000 Subject: [PATCH] improve it the arc diddle a bit more --- perl/DXProt.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/perl/DXProt.pm b/perl/DXProt.pm index d6ea6917..f8a13407 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -1044,9 +1044,8 @@ sub normal shift @{$tochan->{pingtime}} if @{$tochan->{pingtime}} > 6; # cope with a missed ping, this means you must set the pingint large enough - my $miss = ($nopings-$tochan->{nopings}+1) * $tochan->{pingint}; - if ($tochan->is_arcluster && $miss > 0 && $t > $miss && $t < $miss + $tochan->{nopings} ) { - $t -= $miss; + if ($tochan->is_arcluster && $t > $tochan->{pingint} && $t < 2 * $tochan->{pingint} ) { + $t -= $tochan->{pingint}; } # calc smoothed RTT a la TCP -- 2.34.1