X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCommandmode.pm;h=331ca00e0d51b08042e36f05014a478f0b7829b0;hb=64b4171276c84a8df58776608dd9f568adef27b2;hp=f9981349cb0e1b4d1766f4f72a489782776f3a02;hpb=399d826c56c029796a5c0b397c61a51dfb81ff77;p=spider.git diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index f9981349..331ca00e 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -77,7 +77,9 @@ sub start # issue a pc16 to everybody interested my $nchan = DXChannel->get($main::mycall); my @pc16 = DXProt::pc16($nchan, $cuser); - DXProt::broadcast_ak1a(@pc16); + for (@pc16) { + DXProt::broadcast_all_ak1a($_); + } Log('DXCommand', "$call connected"); # send prompts and things @@ -304,7 +306,7 @@ sub finish # issue a pc17 to everybody interested my $nchan = DXChannel->get($main::mycall); my $pc17 = $nchan->pc17($self); - DXProt::broadcast_ak1a($pc17); + DXProt::broadcast_all_ak1a($pc17); Log('DXCommand', "$call disconnected"); $ref->del() if $ref;