X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProt.pm;h=ba4f21d94f71bfbe98211a6c2775face7c245f9f;hb=a313d9c8eb2ea8bbdbe9b5d6e49583d0d422a621;hp=24cffb8d90f4512ab216bdffae66151852cdd65c;hpb=9e5520826fe61fd3ac6941f2b8bf736a432eaa15;p=spider.git diff --git a/perl/DXProt.pm b/perl/DXProt.pm index 24cffb8d..ba4f21d9 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -770,8 +770,8 @@ sub send_pc92_config dbg('DXProt::send_pc92_config') if isdbg('trace'); - # send 'my' configuration - my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all(); + # send 'my' configuration for all users and pc92 capable nodes + my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && $self->{do_pc92} } DXChannel::get_all(); my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan; $self->send_route_pc92($main::mycall, \&pc92c, scalar @localnodes, @localnodes);