summaryrefslogtreecommitdiff
path: root/Echolot/Conf.pm
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2002-07-22 01:28:21 +0000
committerPeter Palfrader <peter@palfrader.org>2002-07-22 01:28:21 +0000
commita21e00e8907f6c21399ef797f9490c9402c56c7f (patch)
tree28f5cdcb07ad8a7899d8f422feec7b9dacb32a86 /Echolot/Conf.pm
parent145357f56d46773e8cea0013fc5e08205a897ff2 (diff)
Not the current time but the scheduled start time is used when deciding which remailers to ping
Diffstat (limited to 'Echolot/Conf.pm')
-rw-r--r--Echolot/Conf.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/Echolot/Conf.pm b/Echolot/Conf.pm
index 3e73a68..9242045 100644
--- a/Echolot/Conf.pm
+++ b/Echolot/Conf.pm
@@ -1,7 +1,7 @@
package Echolot::Conf;
# (c) 2002 Peter Palfrader <peter@palfrader.org>
-# $Id: Conf.pm,v 1.21 2002/07/17 19:00:22 weasel Exp $
+# $Id: Conf.pm,v 1.22 2002/07/22 01:28:21 weasel Exp $
#
=pod
@@ -37,15 +37,15 @@ sub is_not_a_remailer($) {
};
};
-sub send_requests(;$) {
- my ($which) = @_;
+sub send_requests($;$) {
+ my ($scheduled_for, $which) = @_;
$which = '' unless defined $which;
my $call_intervall = Echolot::Config::get()->{'getkeyconf_interval'};
my $send_every_n_calls = Echolot::Config::get()->{'getkeyconf_every_nth_time'};
- my $timemod = (time() / $call_intervall);
+ my $timemod = ($scheduled_for / $call_intervall);
my $this_call_id = $timemod % $send_every_n_calls;
Echolot::Globals::get()->{'storage'}->delay_commit();