X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=baaea72dde04b32fe8edd7565d935c5dd288264a;hb=a16379954943ab0ff013fbd26b0421cae92c55d6;hp=843b927270166788c4232f090c79dc379165153c;hpb=2712b7f62c605559eba46781d793a63591a7d5d3;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 843b9272..baaea72d 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -774,13 +774,18 @@ sub send_local_config sub gen_my_pc92_config { - my $self = shift; + my $node = shift; - my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all(); - dbg("ROUTE: all dxchan: " . join(',', map{$_->{call}} @dxchan)) if isdbg('routelow'); - my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan; - dbg("ROUTE: localnodes: " . join(',', map{$_->{call}} @localnodes)) if isdbg('routelow'); - return pc92c($main::routeroot, @localnodes); + if ($node->{call} eq $main::mycall) { + my @dxchan = grep { $_->call ne $main::mycall && !$_->{isolate} } DXChannel::get_all(); + dbg("ROUTE: all dxchan: " . join(',', map{$_->{call}} @dxchan)) if isdbg('routelow'); + my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan; + dbg("ROUTE: localnodes: " . join(',', map{$_->{call}} @localnodes)) if isdbg('routelow'); + return pc92c($main::routeroot, @localnodes); + } else { + my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users; + return pc92c($node, @rout); + } } sub gen_pc92_update @@ -795,7 +800,7 @@ sub gen_pc92_update dbg('ROUTE: DXProt::gen_pc92_update start') if isdbg('routelow'); # send 'my' configuration for all channels - push @lines, $self->gen_my_pc92_config; + push @lines, gen_my_pc92_config($main::routeroot); if ($with_pc92_nodes) { # send out the configuration of all the directly connected PC92 nodes with current configuration @@ -820,8 +825,7 @@ sub gen_pc92_update dbg("ROUTE: non pc92 localnodes: " . join(',', map{$_->{call}} @localnodes)) if isdbg('routelow'); foreach $node (@localnodes) { if ($node) { - my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users; - push @lines, pc92c($node, @rout); + push @lines, gen_my_pc92_config($node); } }