X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=f4e4e0d5c4caf03ba05a7f7fab5bd0bbe6f512eb;hb=bfb3961b8ac7b159ef8155361003bfdd9d26dfad;hp=98f95033d96e37fab496cf56f7809229f6823bc8;hpb=4a1e9ef57551080432ecfcfcb5d7a924540ee06f;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 98f95033..f4e4e0d5 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -843,9 +843,17 @@ sub time_out_pc92_routes my @rdel; foreach my $n (@nodes) { if ($n->dec_obs <= 0) { + if (my $dxchan = DXChannel::get($n->call)) { + dbg("ROUTE: disconnecting local pc92 $_->{call} on obscount") if isdbg('route'); + $dxchan->disconnect; + next; + } my @parents = map {Route::Node::get($_)} $n->parents; for (@parents) { - push @rdel, $n->del($_) if $_; + if ($_) { + dbg("ROUTE: deleting pc92 $_->{call} from $n->{call} on obscount") if isdbg('route'); + push @rdel, $n->del($_); + } } } } @@ -1228,8 +1236,8 @@ sub broadcast_route_pc9x $line =~ /\^H(\d+)\^\~?$/; unless ($1 > 0 && $self->{isolate}) { foreach $dxchan (@dxchan) { - next if $dxchan == $self; - next if $dxchan == $main::me; + next if $dxchan == $self || $main::me; + next if $origin eq $dxchan->{call}; # don't route some from this call back again. next unless $dxchan->{do_pc92}; next unless $dxchan->isa('DXProt');