spider/cmd/load/hops.pl

9 lines
212 B
Perl
Raw Normal View History

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