2 # 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) {
22 # first clear out any nodes on this dxchannel
23 my $node = Route::Node::get($self->{call});
24 my @rout = $node->del_nodes if $node;
25 DXProt::route_pc21($self, @rout);
26 $dxchan->send(DXProt::pc18());
27 $dxchan->state('init');
28 push @out, $self->msg('init1', $call);
31 push @out, $self->msg('e10', $call);