diff options
author | Peter Palfrader <peter@palfrader.org> | 2003-02-21 06:37:52 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2003-02-21 06:37:52 +0000 |
commit | 70ac732dbf0595f3df5e967db594dbc35a357dcc (patch) | |
tree | 46c62c658914ef3ef15ea7d36a1f3e7b507218e0 /Echolot/Commands.pm | |
parent | d3b3dfdd1817df27fc247f91cc7b7d2755dbee2c (diff) |
Add sendchainpings command
Diffstat (limited to 'Echolot/Commands.pm')
-rw-r--r-- | Echolot/Commands.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Echolot/Commands.pm b/Echolot/Commands.pm index 0ae4bf9..df475b0 100644 --- a/Echolot/Commands.pm +++ b/Echolot/Commands.pm @@ -1,7 +1,7 @@ package Echolot::Commands; # (c) 2002 Peter Palfrader <peter@palfrader.org> -# $Id: Commands.pm,v 1.14 2003/02/20 19:39:03 weasel Exp $ +# $Id: Commands.pm,v 1.15 2003/02/21 06:37:52 weasel Exp $ # =pod @@ -71,6 +71,8 @@ sub processCommands($) { Echolot::Globals::get()->{'scheduler'}->schedule('getkeyconf', 0, time(), \@args ); } elsif ($command eq 'sendpings') { Echolot::Globals::get()->{'scheduler'}->schedule('ping', 0, time(), \@args ); + } elsif ($command eq 'sendchainpings') { + Echolot::Globals::get()->{'scheduler'}->schedule('chainping', 0, time(), \@args ); } elsif ($command eq 'buildstats') { Echolot::Globals::get()->{'scheduler'}->schedule('buildstats', 0, time() ); } elsif ($command eq 'buildkeys') { |