From: Dirk Koopman Date: Sun, 16 Sep 2007 18:36:10 +0000 (+0100) Subject: bigger random element in PC92 ext. node holdoff calcs X-Git-Tag: 1.55~72 X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=8e15f9531d1629f5a2f51ab59fe3ce90e49f2d09 bigger random element in PC92 ext. node holdoff calcs --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index e9fa42b6..eec6b67b 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -493,7 +493,7 @@ sub process if ($dxchan == $main::me || ($ref && ($ref->measure_pc9x_t($main::systime-$main::systime_daystart)) >= $pc92_update_period/2)) { $dxchan->broadcast_pc92_update($dxchan->{call}); } else { - $dxchan->update_pc92_next($pc92_update_period - rand(60)); + $dxchan->update_pc92_next($pc92_update_period - rand($pc92_update_period/4)); } } } diff --git a/perl/Version.pm b/perl/Version.pm index fce61901..c7ce5489 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.54'; $subversion = '0'; -$build = '142'; +$build = '143'; 1;