# issue a pc16 to everybody interested
my $nchan = DXChannel->get($main::mycall);
- my $pc16 = $nchan->pc16($cuser);
- DXProt::broadcast_ak1a($pc16);
+ my @pc16 = DXProt::pc16($nchan, $cuser);
+ DXProt::broadcast_ak1a(@pc16);
}
#
# issue a pc17 to everybody interested
my $nchan = DXChannel->get($main::mycall);
- my $pc17 = $nchan->pc17($ref);
+ my $pc17 = $nchan->pc17($self);
DXProt::broadcast_ak1a($pc17);
$ref->del() if $ref;
my $self = shift;
my @out;
- while (@_) {
+ foreach (@_) {
my $str = "PC16^$self->{call}";
my $i;
- for ($i = 0; @_ && $i < $DXProt::pc16_max_users; $i++) {
+ for ($i = 0; @_ > 0 && $i < $DXProt::pc16_max_users; $i++) {
my $ref = shift;
$str .= sprintf "^%s %s %d", $ref->call, $ref->confmode ? '*' : '-', $ref->here;
}
# remove a local user
sub pc17
{
- my $self = shift;
+ my ($self, $ref) = @_;
my $hops = get_hops(17);
- return "PC17^$self->{call}^$main::mycall^$hops^";
+ return "PC17^$self->{call}^$ref->{call}^$hops^";
}
# Request init string