X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=blobdiff_plain;f=cmd%2Fshow%2Froute.pl;h=c927e8dc265c4d55ed9a7bcf7604888ad0145249;hp=04eecd868ad399d3264e255622c11cfbfc21b414;hb=c1540ccd7990ec4bd151604dd63583d19fe4d0f6;hpb=7a3918d750c1afaf42ab26eb89a7df9033ca9f37 diff --git a/cmd/show/route.pl b/cmd/show/route.pl index 04eecd86..c927e8dc 100644 --- a/cmd/show/route.pl +++ b/cmd/show/route.pl @@ -12,8 +12,6 @@ my @out; return (1, $self->msg('e6')) unless @list; -use RouteDB; - my $l; foreach $l (@list) { my $ref = Route::get($l); @@ -23,13 +21,6 @@ foreach $l (@list) { } else { push @out, $self->msg('e7', $l); } - my @in = RouteDB::_sorted($l); - if (@in) { - push @out, "Learned Routes:"; - for (@in) { - push @out, "$l via $_->{call} count: $_->{count} last heard: " . atime($_->{t}); - } - } } return (1, @out);