spider/cmd/load/hops.pl
djk a8b7d0b77f added swop file
extended badmsg file to allow regexes on various fields
detail changes to all load/* commands
1999-11-24 15:27:38 +00:00

9 lines
212 B
Perl

#
# load the node hop count table after changing it
#
my $self = shift;
return (1, $self->msg('e5')) if $self->priv < 9;
my @out = DXProt::load_hops($self);
@out = ($self->msg('ok')) if !@out;
return (1, @out);