add external entity sending on init
authorminima <minima>
Tue, 2 Jan 2007 23:19:19 +0000 (23:19 +0000)
committerminima <minima>
Tue, 2 Jan 2007 23:19:19 +0000 (23:19 +0000)
perl/DXProt.pm
perl/DXProtHandle.pm

index 58b5982df7848e278e598d69db784acc4b104324..24cffb8d90f4512ab216bdffae66151852cdd65c 100644 (file)
@@ -769,11 +769,25 @@ sub send_pc92_config
        my $node;
 
        dbg('DXProt::send_pc92_config') if isdbg('trace');
-       
+
+       # send 'my' configuration
        my @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} } DXChannel::get_all();
-       my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan if @dxchan;
+       my @localnodes = map { my $r = Route::get($_->{call}); $r ? $r : () } @dxchan;
        $self->send_route_pc92($main::mycall, \&pc92c, scalar @localnodes, @localnodes);
-}
+
+       # send the configuration of all the 'external' nodes that don't handle PC92
+       # out with the 'external' marker on the first node.
+       @dxchan = grep { $_->call ne $main::mycall && $_ != $self && !$_->{isolate} && !$_->{do_pc92} } DXChannel::get_all_nodes();
+       @localnodes = map { my $r = Route::Node::get($_->{call}); $r ? $r : () } @dxchan;
+       foreach $node (@localnodes) {
+               if ($node) {
+                       my @rout = map {my $r = Route::User::get($_); $r ? ($r) : ()} $node->users;
+                       $self->send_route_pc92($main::mycall, \&pc92c, 1, $node, @rout) if @rout;
+               } else {
+                       dbg("sent a null value") if isdbg('chanerr');
+               }
+       }
+} 
 
 #
 # route a message down an appropriate interface for a callsign
index 9821804773d03594e4f26c2201a1eac06b9093dc..858ea00ebafc00a05a8c026c69927acd58feb808 100644 (file)
@@ -1264,6 +1264,7 @@ sub _encode_pc92_call
        $flag |= $ref->here ? 1 : 0;
        if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
                $flag |= 4;
+               $flag |= 2 if $call ne $main::mycall && DXChannel::get($call);
                if ($ext) {
                        if ($ref->version) {
                                my $version = $ref->version || 1.0;