2 # show the users on this cluster from the routing tables
4 # Copyright (c) 1998 Dirk Koopman G1TLH
9 my ($self, $line) = @_;
10 my @list = map { uc } split /\s+/, $line; # list of callsigns of nodes
12 my $node = (DXNode->get($main::mycall));
14 push @out, "Callsigns connected to $main::mycall";
18 my $nlist = $node->list;
19 my @val = sort {$a->call cmp $b->call} values %{$nlist};
20 foreach $call (@val) {
22 next if !grep $call->call eq $_, @list;
25 push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;
29 my $s = $call->{call};
30 $s = sprintf "(%s)", $s if $call->{here} == 0;
34 push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;