spider/cmd/ping.pl
djk 4d30677939 added ping and rcmd commands
fixed a small prob with outgoing connects
upissued version no
1998-12-03 15:51:30 +00:00

29 lines
569 B
Perl

#
# ping command
#
# Copyright (c) 1998 Dirk Koopman G1TLH
#
# $Id$
#
my $self = shift;
my $line = uc shift; # only one callsign allowed
my ($call) = $line =~ /^\s*(\S+)/;
# are we permitted?
return (1, $self->msg('e5')) if $self->priv < 1;
# is there a call?
return (1, $self->msg('e6')) if !$call;
# can we see it? Is it a node?
my $noderef = DXCluster->get_exact($call);
return (1, $self->msg('e7', $call)) if !$noderef || !$noderef->pcversion;
# ping it
DXProt::addping($self->call, $call);
return (1, $self->msg('pingo', $call, atime($main::systime)));