2 # links : which are active
3 # a complete list of currently connected linked nodes
5 # Created by Iain Philipps G0RDI, based entirely on
6 # who.pl, which is Copyright (c) 1999 Dirk Koopman G1TLH
16 push @out, " Callsign Started Ave RTT";
18 foreach $dxchan ( sort {$a->call cmp $b->call} DXChannel::get_all_ak1a ) {
19 my $call = $dxchan->call();
20 my $t = cldatetime($dxchan->startt);
21 my $name = $dxchan->user->name || " ";
22 my $ping = $dxchan->is_node && $dxchan != $DXProt::me ? sprintf("%8.2f",
23 $dxchan->pingave) : "";
24 push @out, sprintf "%10s $t %-6.6s $ping", $call;