X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Frcmd.pl;h=caa9fb83ad445c13e770a7ff9b7aa61fcc93dacb;hb=4d3067793942b3f4518615906dde50db5b76464a;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=7a356e1acb6d7e513e2004d75c6c39f0c326081a;p=spider.git diff --git a/cmd/rcmd.pl b/cmd/rcmd.pl index e69de29b..caa9fb83 100644 --- a/cmd/rcmd.pl +++ b/cmd/rcmd.pl @@ -0,0 +1,30 @@ +# +# rcmd command +# +# Copyright (c) 1998 Dirk Koopman G1TLH +# +# $Id$ +# + +my $self = shift; +my $line = shift; +my ($call) = $line =~ /^\s*(\S+)/; + +# are we permitted? +return (1, $self->msg('e5')) if $self->priv < 6; + +# is there a call? +return (1, $self->msg('e6')) if !$call; + +# remove the callsign from the line +$line =~ s/^\s*$call\s+//; + +# can we see it? Is it a node? +$call = uc $call; +my $noderef = DXCluster->get_exact($call); +return (1, $self->msg('e7', $call)) if !$noderef || !$noderef->pcversion; + +# ping it +DXProt::addrcmd($self->call, $call, $line); + +return (1, $self->msg('rcmdo', $line, $call));