06Jun01=======================================================================
1. add stat/route_node and stat/route_user commands
+2. add sh/userconfig command (to show backward links to nodes)
05Jun01=======================================================================
1. add set/bbs command
2. more work on Routing code.
--- /dev/null
+#
+# show who all the users are connected to
+#
+# Copyright (c) 2001 Dirk Koopman G1TLH
+#
+# $Id$
+#
+
+my ($self, $line) = @_;
+my @list = map { uc } split /\s+/, $line; # list of callsigns of nodes
+my @out;
+my @users = sort {$a->call cmp $b->call} values %Route::User::list;
+
+foreach my $uref (@users) {
+ my $ucall = $uref->call;
+ next if @list && !grep $ucall =~ m|$_|, @list;
+ my $call = $uref->user_call;
+ my $l = join ',', (map {my $ref = Route::Node::get($_); $ref ? ($ref->user_call) : ("$_?")} sort @{$uref->parent});
+ push @out, "$call->$l";
+}
+
+return (1, @out);