X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fping.pl;h=1d75a8263d9c035fa4b5f0ecb5be97a6e5fc930c;hb=6975c4b4c8b210af067efab767bc1656786f70f2;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=8a0f0fc3c54895f0ce8b0207e42af1f693d757f6;p=spider.git diff --git a/cmd/ping.pl b/cmd/ping.pl index e69de29b..1d75a826 100644 --- a/cmd/ping.pl +++ b/cmd/ping.pl @@ -0,0 +1,30 @@ +# +# 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); +$noderef = DXChannel->get($call) unless $noderef; + +return (1, $self->msg('e7', $call)) if !$noderef || !$noderef->pcversion; + +# ping it +DXProt::addping($self->call, $call); + +return (1, $self->msg('pingo', $call)); + +