try to gather more info on disappearing nodes
[spider.git] / perl / DXProt.pm
index c00219ecd780b4354d79fb4d61403ca017fb76ed..f4e4e0d5c4caf03ba05a7f7fab5bd0bbe6f512eb 100644 (file)
@@ -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($_);
+                               }
                        }
                }
        }