add show/route command
[spider.git] / cmd / show / route.pl
diff --git a/cmd/show/route.pl b/cmd/show/route.pl
new file mode 100644 (file)
index 0000000..95497d2
--- /dev/null
@@ -0,0 +1,25 @@
+#
+# show the routing to a node or station
+#
+# Copyright (c) 2001 Dirk Koopman G1TLH
+#
+# $Id$
+#
+
+my ($self, $line) = @_;
+my @list = map { uc } split /\s+/, $line;           # list of callsigns of nodes
+my @out;
+
+return (1, $self->msg('e6')) unless @list;
+
+my $l;
+foreach $l (@list) {
+       my $ref = DXCluster->get_exact($l);
+       if ($ref) {
+               push @out, $self->msg('route', $l, $ref->mynode->call,  $ref->dxchan->call);
+       } else {
+               push @out, $self->msg('e7', $l);
+       }
+}
+
+return (1, @out);