make links command work :-)
[spider.git] / cmd / links.pl
1 #
2 # links : which are active
3 # a complete list of currently connected linked nodes
4 #
5 # Created by Iain Philipps G0RDI, based entirely on
6 # who.pl, which is Copyright (c) 1999 Dirk Koopman G1TLH
7 # and subsequently plagerized by K1XX.
8 #
9 # 16-Jun-2000
10 # $Id$
11 #
12
13 my $self = shift;
14 my $dxchan;
15 my @out;
16 my $nowt = time;
17
18 push @out, "                                      Ave  Obs  Ping  Next      Filters";
19 push @out, "  Callsign Type Started               RTT Count Int.  Ping Iso? In  Out";
20
21 foreach $dxchan ( sort {$a->call cmp $b->call} DXChannel::get_all_nodes ) {
22         my $call = $dxchan->call();
23         next if $dxchan == $main::me;
24         my $t = cldatetime($dxchan->startt);
25         my $sort;
26         my $name = $dxchan->user->name || " ";
27         my $obscount = $dxchan->nopings;
28         my $lastt = $dxchan->pingint - ($nowt - $dxchan->lastping);
29         my $pingint = $dxchan->pingint;
30         my $ping = $dxchan->is_node && $dxchan != $main::me ? sprintf("%8.2f",$dxchan->pingave) : "";
31         my $iso = $dxchan->isolate ? 'Y' :' ';
32         my ($fin, $fout, $pc92) = (' ', ' ', ' ');
33 #       if ($dxchan->do_pc9x) {
34 #               $pc92 = 'Y';
35 #       } else {
36                 my $f;
37                 if ($f = $dxchan->inroutefilter) {
38                         $fin = $dxchan->inroutefilter =~ /node_default/ ? 'D' : 'Y';
39                 }
40                 if ($f = $dxchan->routefilter) {
41                         $fout = $dxchan->routefilter =~ /node_default/ ? 'D' : 'Y';
42                 }
43 #       }
44         $sort = 'ANEA' if $dxchan->is_aranea;
45         $sort = "DXSP" if $dxchan->is_spider;
46         $sort = "CLX " if $dxchan->is_clx;
47         $sort = "DXNT" if $dxchan->is_dxnet;
48         $sort = "AR-C" if $dxchan->is_arcluster;
49         $sort = "AK1A" if $dxchan->is_ak1a;
50         push @out, sprintf "%10s $sort $t$ping   $obscount  %5d %5d  $iso    $fin   $fout   $pc92", $call, $pingint, $lastt;
51 }
52
53 return (1, @out)
54
55
56
57