spider/cmd/unset/hops.pl
2001-12-08 13:42:25 +00:00

34 lines
746 B
Perl

#
# unset/hops commands
#
# Copyright (c) 2000 Dirk Koopman G1TLH
#
# $Id$
#
my ($self, $line) = @_;
return (0, $self->msg('e5')) if $self->priv < 8;
my @f = split /\s+/, $line;
my @out;
my $call;
if (is_callsign(uc $f[0])) {
$call = uc shift @f;
} elsif ($f[0] eq 'node_default' || $f[0] eq 'user_default') {
$call = shift @f;
}
my $sort = lc shift @f if $f[0] =~ /^ann|spots|wwv|wcy|route$/i;
return (0, $self->msg('unsethop1')) unless $call && $sort;
my $ref = Filter::read_in($sort, $call, 0);
$ref = Filter->new($sort, $call, 0) if !$ref || $ref->isa('Filter::Old');
return (0, $self->msg('filter5', '', $sort, $call)) unless $ref;
delete $ref->{hops};
$ref->write;
$ref->install;
return (0, $self->msg('unsethop2', $sort, $call));