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 = $main::routeroot;
14 push @out, "Callsigns connected to $main::mycall";
18 my @val = sort $node->users;
19 foreach $call (@val) {
21 next if !grep $call eq $_, @list;
24 push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;
28 my $uref = Route::User::get($call);
31 $s = sprintf "(%s)", $call unless $uref->here;
38 push @out, sprintf "%-12s %-12s %-12s %-12s %-12s %-12s", @l;