2 # reverse init a cluster connection
4 # Copyright (c) 1999 Dirk Koopman G1TLH
8 my ($self, $line) = @_;
9 my @calls = split /\s+/, $line;
13 return (1, $self->msg('e5')) if $self->priv < 5;
15 foreach $call (@calls) {
17 next if $call eq $main::mycall;
18 my $dxchan = DXChannel::get($call);
20 if ($dxchan->is_node) {
21 my $parent = Route::Node::get($call);
22 $dxchan->state('init');
23 $dxchan->send_local_config;
24 $dxchan->send(DXProt::pc20());
25 push @out, $self->msg('init1', $call);
28 push @out, $self->msg('e10', $call);