X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=9903ceb421c744d9b5642d843b7f1e9b99a0af1b;hb=9549aeeb927ca0deb3cac4d06241f4dc4a054bb1;hp=fdd3025a99bd290d19669c0a24adec5d438499f7;hpb=9f4c467f60ec71c0bbb2b27f91ca7d86a40b4597;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index fdd3025a..9903ceb4 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -457,12 +457,10 @@ sub process $pc50s = pc50($main::me, scalar DXChannel::get_all_users); eph_dup($pc50s); $last_pc50 = $t; - time_out_pc92_routes(); } foreach $dxchan (@dxchan) { next unless $dxchan->is_node; - next if $dxchan->handle_xml; next if $dxchan == $main::me; # send the pc50 @@ -471,12 +469,14 @@ sub process # send a ping out on this channel if ($dxchan->{pingint} && $t >= $dxchan->{pingint} + $dxchan->{lastping}) { if ($dxchan->{nopings} <= 0) { + dbg("ROUTE: $dxchan->{call} disconnected on ping obscount") if isdbg('obscount'); $dxchan->disconnect; } else { DXXml::Ping::add($main::me, $dxchan->call); $dxchan->{nopings} -= 1; $dxchan->{lastping} = $t; $dxchan->{lastping} += $dxchan->{pingint} / 2 unless @{$dxchan->{pingtime}}; + dbg("ROUTE: $dxchan->{call} ping obscount = $dxchan->{nopings}") if isdbg('obscount'); } } } @@ -510,6 +510,7 @@ sub process # do the keepalive for me, if required if ($main::systime >= $main::me->{next_pc92_keepalive}) { + time_out_pc92_routes(); $main::me->broadcast_pc92_keepalive($main::mycall); } @@ -1206,12 +1207,12 @@ sub addrcmd sub disconnect { my $self = shift; - my $pc39flag = shift; + my $pc39flag = shift || 0; my $call = $self->call; return if $self->{disconnecting}++; - unless ($pc39flag && $pc39flag == 1) { + unless ($pc39flag == 1) { $self->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', "System Op"))); } @@ -1272,7 +1273,7 @@ sub disconnect } # broadcast to all other nodes that all the nodes connected to via me are gone - unless ($pc39flag && $pc39flag == 2) { + unless ($pc39flag == 2) { $self->route_pc21($main::mycall, undef, @rout) if @rout; $self->route_pc92d($main::mycall, undef, $main::routeroot, $node) if $node; }