X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fdisconnect.pl;h=e8e83b89c4778f18f5c730e7c5c2d858dd9a1236;hb=d8b3b94c40205c64e08402f4a4b272a55c14f80d;hp=bc3570476f78d6f849a3d0318a28ba19f3602a94;hpb=2546ef0cfaaca39e65985e414258071a636979af;p=spider.git diff --git a/cmd/disconnect.pl b/cmd/disconnect.pl index bc357047..e8e83b89 100644 --- a/cmd/disconnect.pl +++ b/cmd/disconnect.pl @@ -6,18 +6,24 @@ my @calls = split /\s+/, $line; my $call; my @out; -if ($self->priv < 9) { - return (1, "not allowed"); +if ($self->priv < 8) { + return (1, $self->msg('e5')); } foreach $call (@calls) { $call = uc $call; + next if $call eq $main::mycall; my $dxchan = DXChannel->get($call); if ($dxchan) { + if ($dxchan->is_ak1a) { + $dxchan->send_now("D", DXProt::pc39($main::mycall, $self->msg('disc1', $self->call))); + } else { + $dxchan->send_now('D', $self->msg('disc1', $self->call)); + } $dxchan->disconnect; - push @out, "disconnected $call"; + push @out, $self->msg('disc2', $call); } else { - push @out, "$call not connected locally"; + push @out, $self->msg('e10', $call); } }