'^set/noww', 'unset/wwv', 'unset/wwv',
'^set/nowx', 'unset/wx', 'unset/wx',
'^sh$', 'show', 'show',
+ '^sh\w*/u$', 'show/user', 'show/user',
'^sh\w*/bu', 'show/files bulletins', 'show/files',
'^sh\w*/c/n', 'show/configuration nodes', 'show/configuration',
'^sh\w*/c$', 'show/configuration', 'show/configuration',
+++ /dev/null
-#
-# show who all the nodes 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 @nodes = sort {$a->call cmp $b->call} values %Route::Node::list;
-
-foreach my $nref (@nodes) {
- my $ncall = $nref->call;
- next if @list && !grep $ncall =~ m|$_|, @list;
- my $call = $nref->user_call;
- my $l = join ',', (map {my $ref = Route::Node::get($_); $ref ? ($ref->user_call) : ("$_?")} sort @{$nref->parent});
- push @out, "$call->$l";
-}
-
-return (1, @out);
+++ /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);
--- /dev/null
+#
+# show who all the nodes 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 @nodes = sort {$a->call cmp $b->call} values %Route::Node::list;
+
+foreach my $nref (@nodes) {
+ my $ncall = $nref->call;
+ next if @list && !grep $ncall =~ m|$_|, @list;
+ my $call = $nref->user_call;
+ my $l = join ',', (map {my $ref = Route::Node::get($_); $ref ? ($ref->user_call) : ("$_?")} sort @{$nref->parent});
+ push @out, "$call->$l";
+}
+
+return (1, @out);
--- /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);
$node->dxchan($DXProt::me);
}
- my $pref = Route::Node::get($main::mycall);
- if ($pref) {
- my @rout = $pref->del_user($main::mycall);
- dbg('route', "B/C PC17 on $main::mycall for: $call");
- }
+ my @rout = $main::routeroot->del_user($call);
+ dbg('route', "B/C PC17 on $main::mycall for: $call");
# I was the last node visited
$self->user->node($main::mycall);
return @out;
}
+#
+# routing things
+#
+
+
#
# track destruction
#