fix console.pl max scroll depth
[spider.git] / cmd / load / hops.pl
1 #
2 # load the node hop count table after changing it
3 #
4 my $self = shift;
5 return (1, $self->msg('e5')) if $self->priv < 9;
6 my @out = DXProt::load_hops($self);
7 @out = ($self->msg('ok')) if !@out;
8 return (1, @out);