4 # Copyright (c) 1998 Dirk Koopman G1TLH
10 my $line = uc shift; # only one callsign allowed
11 my ($call) = $line =~ /^\s*(\S+)/;
14 return (1, $self->msg('e5')) if $self->priv < 1;
17 return (1, $self->msg('e6')) if !$call;
19 # can we see it? Is it a node?
20 my $noderef = DXCluster->get_exact($call);
21 return (1, $self->msg('e7', $call)) if !$noderef || !$noderef->pcversion;
24 DXProt::addping($self->call, $call);
26 return (1, $self->msg('pingo', $call, atime($main::systime)));