X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FRouteDB.pm;h=96d0b0b4691a690c6d13d647040c67b108e759f1;hb=aeb4c8591de710bd8de14f33817d2f0aabbd5e28;hp=42cf693f76f65a6d06772b3a68b36aaa131e6979;hpb=516dc3f87a4d591938aa2edf76b6a5ae040d05f9;p=spider.git diff --git a/perl/RouteDB.pm b/perl/RouteDB.pm index 42cf693f..96d0b0b4 100644 --- a/perl/RouteDB.pm +++ b/perl/RouteDB.pm @@ -90,7 +90,7 @@ sub update my $interface = shift; my $hops = shift || $default; my $ref = $list{$call} || RouteDB->new($call); - my $iref = $ref->{item}->{$interface} ||= RouteDB::Item->new($interface); + my $iref = $ref->{item}->{$interface} ||= RouteDB::Item->new($interface, $hops); $iref->{count}++; $iref->{hops} = $hops if $hops < $iref->{hops}; $iref->{t} = shift || $main::systime; @@ -142,7 +142,8 @@ sub new { my $pkg = shift; my $call = shift; - return bless {call => $call, hops => $RouteDB::default}, (ref $pkg || $pkg); + my $hops = shift || $RouteDB::default; + return bless {call => $call, hops => $hops}, (ref $pkg || $pkg); } 1;