3 # This module impliments the protocal mode for a dx cluster
5 # Copyright (c) 1998 Dirk Koopman G1TLH
31 use vars qw($me $pc11_max_age $pc11_dup_age $pc23_dup_age
32 %spotdup %wwvdup $last_hour %pings %rcmds
33 %nodehops @baddx $baddxfn $pc12_dup_age
36 $me = undef; # the channel id for this cluster
37 $pc11_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc11
38 $pc11_dup_age = 24*3600; # the maximum time to keep the spot dup list for
39 $pc23_dup_age = 24*3600; # the maximum time to keep the wwv dup list for
40 $pc12_dup_age = 24*3600; # the maximum time to keep the ann dup list for
41 %spotdup = (); # the pc11 and 26 dup hash
42 %wwvdup = (); # the pc23 and 27 dup hash
43 %anndup = (); # the PC12 dup hash
44 $last_hour = time; # last time I did an hourly periodic update
45 %pings = (); # outstanding ping requests outbound
46 %rcmds = (); # outstanding rcmd requests outbound
47 %nodehops = (); # node specific hop control
48 @baddx = (); # list of illegal spotted callsigns
50 $baddxfn = "$main::data/baddx.pl";
54 my $user = DXUser->get($main::mycall);
55 $DXProt::myprot_version += $main::version*100;
56 $me = DXProt->new($main::mycall, 0, $user);
58 $me->{state} = "indifferent";
59 do "$main::data/hop_table.pl" if -e "$main::data/hop_table.pl";
61 # $me->{sort} = 'M'; # M for me
63 # now prime the spot duplicates file with today's and yesterday's data
64 my @today = Julian::unixtoj(time);
65 my @spots = Spot::readfile(@today);
66 @today = Julian::sub(@today, 1);
67 push @spots, Spot::readfile(@today);
69 my $dupkey = "$_->[0]$_->[1]$_->[2]$_->[3]$_->[4]";
70 $spotdup{$dupkey} = $_->[2];
73 # now prime the wwv duplicates file with just this month's data
74 my @wwv = Geomag::readfile(time);
76 my $dupkey = "$_->[1].$_->[2]$_->[3]$_->[4]";
77 $wwvdup{$dupkey} = $_->[1];
81 do "$baddxfn" if -e "$baddxfn";
86 # obtain a new connection this is derived from dxchannel
91 my $self = DXChannel::alloc(@_);
92 $self->{'sort'} = 'A'; # in absence of how to find out what sort of an object I am
96 # this is how a pc connection starts (for an incoming connection)
97 # issue a PC38 followed by a PC18, then wait for a PC20 (remembering
98 # all the crap that comes between).
101 my ($self, $line, $sort) = @_;
102 my $call = $self->{call};
103 my $user = $self->{user};
105 # remember type of connection
106 $self->{consort} = $line;
107 $self->{outbound} = $sort eq 'O';
108 $self->{priv} = $user->priv;
109 $self->{lang} = $user->lang;
110 $self->{isolate} = $user->{isolate};
111 $self->{consort} = $line; # save the connection type
115 $self->{spotfilter} = Filter::read_in('spots', $call);
116 $self->{wwvfilter} = Filter::read_in('wwv', $call);
117 $self->{annfilter} = Filter::read_in('ann', $call);
119 # set unbuffered and no echo
120 $self->send_now('B',"0");
121 $self->send_now('E',"0");
123 # send initialisation string
124 if (!$self->{outbound}) {
125 $self->send(pc38()) if DXNode->get_all();
128 $self->state('init');
131 Log('DXProt', "$call connected");
135 # This is the normal pcxx despatcher
139 my ($self, $line) = @_;
140 my @field = split /\^/, $line;
141 pop @field if $field[-1] eq '~';
143 # print join(',', @field), "\n";
145 # ignore any lines that don't start with PC
146 return if !$field[0] =~ /^PC/;
149 my ($pcno) = $field[0] =~ /^PC(\d\d)/; # just get the number
151 return if $pcno < 10 || $pcno > 51;
156 $pcr = Local::pcprot($self, $pcno, @field);
158 # dbg('local', "Local::pcprot error $@") if $@;
162 if ($pcno == 10) { # incoming talk
164 # is it for me or one of mine?
165 my $call = ($field[5] gt ' ') ? $field[5] : $field[2];
166 if ($call eq $main::mycall || grep $_ eq $call, get_all_user_calls()) {
169 my $text = unpad($field[3]);
170 Log('talk', $call, $field[1], $field[6], $text);
171 $call = $main::myalias if $call eq $main::mycall;
172 my $ref = DXChannel->get($call);
173 $ref->send("$call de $field[1]: $text") if $ref && $ref->{talk};
175 route($field[2], $line); # relay it on its way
180 if ($pcno == 11 || $pcno == 26) { # dx spot
182 # if this is a 'nodx' node then ignore it
183 last SWITCH if grep $field[7] =~ /^$_/, @DXProt::nodx_node;
185 # convert the date to a unix date
186 my $d = cltounix($field[3], $field[4]);
187 # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
188 if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
189 dbg('chan', "Spot ignored, invalid date or out of range ($field[3] $field[4])\n");
193 # strip off the leading & trailing spaces from the comment
194 my $text = unpad($field[5]);
197 my $spotter = $field[6];
198 $spotter =~ s/-\d+$//o; # strip off the ssid from the spotter
201 my $freq = $field[1] - 0;
202 my $dupkey = "$freq$field[2]$d$text$spotter";
203 if ($spotdup{$dupkey}) {
204 dbg('chan', "Duplicate Spot ignored\n");
208 $spotdup{$dupkey} = $d;
211 if (grep $field[2] eq $_, @baddx) {
212 dbg('chan', "Bad DX spot, ignored");
216 my @spot = Spot::add($freq, $field[2], $d, $text, $spotter, $field[7]);
219 # @spot at this point contains:-
220 # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
221 # then spotted itu, spotted cq, spotters itu, spotters cq
222 # you should be able to route on any of these
228 $r = Local::spot($self, @spot);
230 # dbg('local', "Local::spot1 error $@") if $@;
233 # DON'T be silly and send on PC26s!
234 return if $pcno == 26;
236 # send out the filtered spots
237 send_dx_spot($self, $line, @spot) if @spot;
241 if ($pcno == 12) { # announces
242 # announce duplicate checking
243 my $text = uc unpad($field[3]);
244 my $dupkey = $field[1].$field[2].$text.$field[4].$field[6];
245 if ($anndup{$dupkey}) {
246 dbg('chan', "Duplicate Announce ignored\n");
249 $anndup{$dupkey} = $main::systime;
251 # global ann filtering
252 my ($filter, $hops) = Filter::it($self->{annfilter}, @field[1..6], $self->{call} ) if $self->{annfilter};
253 if ($self->{annfilter} && !$filter) {
254 dbg('chan', "Rejected by filter");
258 if ($field[2] eq '*' || $field[2] eq $main::mycall) {
260 # strip leading and trailing stuff
261 my $text = unpad($field[3]);
266 if ($field[4] eq '*') { # sysops
268 @list = map { $_->priv >= 5 ? $_ : () } get_all_users();
269 } elsif ($field[4] gt ' ') { # speciality list handling
270 my ($name) = split /\./, $field[4];
271 $target = "$name"; # put the rest in later (if bothered)
274 if ($field[6] eq '1') {
278 $target = "All" if !$target;
281 broadcast_list("$to$target de $field[1]: $text", 'ann', undef, @list);
283 broadcast_users("$target de $field[1]: $text", 'ann', undef);
285 Log('ann', $target, $field[1], $text);
287 return if $field[2] eq $main::mycall; # it's routed to me
289 route($field[2], $line);
290 return; # only on a routed one
306 if ($pcno == 16) { # add a user
307 my $node = DXCluster->get_exact($field[1]);
308 last SWITCH if !$node; # ignore if havn't seen a PC19 for this one yet
309 last SWITCH unless $node->isa('DXNode');
313 for ($i = 2; $i < $#field; $i++) {
314 my ($call, $confmode, $here) = $field[$i] =~ /^(\S+) (\S) (\d)/o;
315 next if !$call || length $call < 3 || length $call > 8;
318 next if DXCluster->get_exact($call); # we already have this (loop?)
320 $confmode = $confmode eq '*';
321 DXNodeuser->new($self, $node, $call, $confmode, $here);
323 # add this station to the user database, if required
324 $call =~ s/-\d+$//o; # remove ssid for users
325 my $user = DXUser->get_current($call);
326 $user = DXUser->new($call) if !$user;
327 $user->homenode($node->call) if !$user->homenode;
328 $user->node($node->call);
329 $user->lastin($main::systime);
333 # queue up any messages (look for privates only)
334 DXMsg::queue_msg(1) if $self->state eq 'normal';
338 if ($pcno == 17) { # remove a user
340 my $ref = DXCluster->get_exact($field[1]);
345 if ($pcno == 18) { # link request
346 $self->send_local_config();
348 $self->state('init');
349 return; # we don't pass these on
352 if ($pcno == 19) { # incoming cluster list
354 for ($i = 1; $i < $#field-1; $i += 4) {
355 my $here = $field[$i];
356 my $call = uc $field[$i+1];
357 my $confmode = $field[$i+2] eq '*';
358 my $ver = $field[$i+3];
360 # now check the call over
361 next if DXCluster->get_exact($call); # we already have this
363 # check for sane parameters
364 next if $ver < 5000; # only works with version 5 software
365 next if length $call < 3; # min 3 letter callsigns
366 DXNode->new($self, $call, $confmode, $here, $ver);
368 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
369 my $mref = DXMsg::get_busy($call);
370 $mref->stop_msg($self) if $mref;
372 # add this station to the user database, if required (don't remove SSID from nodes)
373 my $user = DXUser->get_current($call);
375 $user = DXUser->new($call);
377 $user->priv(1); # I have relented and defaulted nodes
378 $self->{priv} = 1; # to user RCMDs allowed
379 $user->homenode($call);
382 $user->lastin($main::systime);
386 # queue up any messages
387 DXMsg::queue_msg(0) if $self->state eq 'normal';
391 if ($pcno == 20) { # send local configuration
392 $self->send_local_config();
394 $self->state('normal');
402 if ($pcno == 21) { # delete a cluster from the list
403 my $call = uc $field[1];
404 if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
405 my $ref = DXCluster->get_exact($call);
412 $self->state('normal');
419 if ($pcno == 23 || $pcno == 27) { # WWV info
421 my $d = cltounix($field[1], sprintf("%02d18Z", $field[2]));
422 my $sfi = unpad($field[3]);
423 my $k = unpad($field[4]);
424 my $i = unpad($field[5]);
425 my $dupkey = "$d.$sfi$k$i";
426 if ($wwvdup{$dupkey}) {
427 dbg('chan', "Dup WWV Spot ignored\n");
430 if ($d > $main::systime + 900 || $field[2] < 0 || $field[2] > 23) {
431 dbg('chan', "WWV Date ($field[1] $field[2]) out of range");
434 $wwvdup{$dupkey} = $d;
435 $field[6] =~ s/-\d+$//o; # remove spotter's ssid
437 my $wwv = Geomag::update($d, $field[2], $sfi, $k, $i, @field[6..$#field]);
441 $r = Local::wwv($self, $field[1], $field[2], $sfi, $k, $i, @field[6..$#field]);
443 # dbg('local', "Local::wwv2 error $@") if $@;
446 # DON'T be silly and send on PC27s!
447 return if $pcno == 27;
449 # broadcast to the eager users
450 broadcast_users("WWV de $field[7] <$field[2]>: SFI=$sfi, A=$k, K=$i, $field[6]", 'wwv', $wwv );
454 if ($pcno == 24) { # set here status
455 my $call = uc $field[1];
456 my $ref = DXCluster->get_exact($call);
457 $ref->here($field[2]) if $ref;
461 if ($pcno == 25) { # merge request
462 unless ($field[1] eq $main::mycall) {
463 dbg('chan', "merge request to $field[1] from $field[2] ignored");
467 Log('DXProt', "Merge request for $field[3] spots and $field[4] WWV from $field[1]");
471 my @in = reverse Spot::search(1, undef, undef, 0, $field[3]-1);
474 $self->send(pc26(@{$in}[0..4], $in->[7]));
480 my @in = reverse Geomag::search(0, $field[4], time, 1);
483 $self->send(pc27(@{$in}));
489 if (($pcno >= 28 && $pcno <= 33) || $pcno == 40 || $pcno == 42 || $pcno == 49) { # mail/file handling
490 DXMsg::process($self, $line);
494 if ($pcno == 34 || $pcno == 36) { # remote commands (incoming)
495 if ($field[1] eq $main::mycall) {
496 my $ref = DXUser->get_current($field[2]);
497 my $cref = DXCluster->get($field[2]);
498 Log('rcmd', 'in', $ref->{priv}, $field[2], $field[3]);
499 unless ($field[3] =~ /rcmd/i || !$cref || !$ref || $cref->mynode->call ne $ref->homenode) { # not allowed to relay RCMDS!
500 if ($ref->{priv}) { # you have to have SOME privilege, the commands have further filtering
501 $self->{remotecmd} = 1; # for the benefit of any command that needs to know
502 my @in = (DXCommandmode::run_cmd($self, $field[3]));
505 $self->send(pc35($main::mycall, $field[2], "$main::mycall:$_"));
506 Log('rcmd', 'out', $field[2], $_);
508 delete $self->{remotecmd};
510 $self->send(pc35($main::mycall, $field[2], "$main::mycall:sorry...!"));
513 $self->send(pc35($main::mycall, $field[2], "$main::mycall:your attempt is logged, Tut tut tut...!"));
516 route($field[1], $line);
521 if ($pcno == 35) { # remote command replies
522 if ($field[1] eq $main::mycall) {
523 my $s = $rcmds{$field[2]};
525 my $dxchan = DXChannel->get($s->{call});
526 $dxchan->send($field[3]) if $dxchan;
527 delete $rcmds{$field[2]} if !$dxchan;
530 route($field[1], $line);
539 if ($pcno == 38) { # node connected list from neighbour
543 if ($pcno == 39) { # incoming disconnect
548 if ($pcno == 41) { # user info
549 # add this station to the user database, if required
550 my $user = DXUser->get_current($field[1]);
552 # then try without an SSID
553 $field[1] =~ s/-\d+$//o;
554 $user = DXUser->get_current($field[1]);
556 $user = DXUser->new($field[1]) if !$user;
558 if ($field[2] == 1) {
559 $user->name($field[3]);
560 } elsif ($field[2] == 2) {
561 $user->qth($field[3]);
562 } elsif ($field[2] == 3) {
563 my ($lat, $long) = DXBearing::stoll($field[3]);
566 } elsif ($field[2] == 4) {
567 $user->homenode($field[3]);
591 if ($pcno == 50) { # keep alive/user list
592 my $ref = DXCluster->get_exact($field[1]);
593 $ref->update_users($field[2]) if $ref;
597 if ($pcno == 51) { # incoming ping requests/answers
600 if ($field[1] eq $main::mycall) {
601 my $flag = $field[3];
603 $self->send(pc51($field[2], $field[1], '0'));
605 # it's a reply, look in the ping list for this one
606 my $ref = $pings{$field[2]};
609 my $dxchan = DXChannel->get($r->{call});
610 $dxchan->send($dxchan->msg('pingi', $field[2], atime($main::systime), $main::systime - $r->{t})) if $dxchan;
615 # route down an appropriate thingy
616 route($field[1], $line);
622 # if get here then rebroadcast the thing with its Hop count decremented (if
623 # there is one). If it has a hop count and it decrements to zero then don't
626 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
630 if (!$self->{isolate}) {
631 broadcast_ak1a($line, $self); # send it to everyone but me
636 # This is called from inside the main cluster processing loop and is used
637 # for despatching commands that are doing some long processing job
642 my @dxchan = DXChannel->get_all();
645 foreach $dxchan (@dxchan) {
646 next unless $dxchan->is_ak1a();
647 next if $dxchan == $me;
649 # send a pc50 out on this channel
650 if ($t >= $dxchan->pc50_t + $DXProt::pc50_interval) {
651 $dxchan->send(pc50());
659 if ($main::systime - 3600 > $last_hour) {
660 $cutoff = $main::systime - $pc11_dup_age;
661 while (($key, $val) = each %spotdup) {
662 delete $spotdup{$key} if $val < $cutoff;
664 $cutoff = $main::systime - $pc23_dup_age;
665 while (($key, $val) = each %wwvdup) {
666 delete $wwvdup{$key} if $val < $cutoff;
668 $cutoff = $main::systime - $pc12_dup_age;
669 while (($key, $val) = each %anndup) {
670 delete $anndup{$key} if $val < $cutoff;
672 $last_hour = $main::systime;
677 # finish up a pc context
682 my $call = $self->call;
683 my $ref = DXCluster->get_exact($call);
685 # unbusy and stop and outgoing mail
686 my $mref = DXMsg::get_busy($call);
687 $mref->stop_msg($self) if $mref;
689 # broadcast to all other nodes that all the nodes connected to via me are gone
690 my @gonenodes = map { $_->dxchan == $self ? $_ : () } DXNode::get_all();
693 foreach $node (@gonenodes) {
694 next if $node->call eq $call;
695 broadcast_ak1a(pc21($node->call, 'Gone') , $self) unless $self->{isolate};
699 # remove outstanding pings
700 delete $pings{$call};
702 # now broadcast to all other ak1a nodes that I have gone
703 broadcast_ak1a(pc21($call, 'Gone.'), $self);
705 Log('DXProt', $call . " Disconnected");
710 # some active measures
716 my @dxchan = DXChannel->get_all();
719 # send it if it isn't the except list and isn't isolated and still has a hop count
720 # taking into account filtering and so on
721 foreach $dxchan (@dxchan) {
723 my ($filter, $hops) = Filter::it($dxchan->{spotfilter}, @_, $self->{call} ) if $dxchan->{spotfilter};
724 if ($dxchan->is_ak1a) {
725 next if $dxchan == $self;
728 $routeit =~ s/\^H\d+\^\~$/\^H$hops\^\~/;
730 $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name
731 next unless $routeit;
734 $dxchan->send($routeit) if $routeit;
736 $dxchan->send($routeit) unless $dxchan->{isolate} || $self->{isolate};
739 } elsif ($dxchan->is_user && $dxchan->{dx}) {
740 my $buf = Spot::formatb($_[0], $_[1], $_[2], $_[3], $_[4]);
741 $buf .= "\a\a" if $dxchan->{beep};
742 if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'convers') {
743 $dxchan->send($buf) if !$hops || ($hops && $filter);
745 $dxchan->delay($buf) if !$hops || ($hops && $filter);
751 sub send_local_config
760 if ($self->{isolate}) {
761 @localnodes = (DXCluster->get_exact($main::mycall));
763 # create a list of all the nodes that are not connected to this connection
764 # and are not themselves isolated, this to make sure that isolated nodes
765 # don't appear outside of this node
766 @nodes = DXNode::get_all();
767 @nodes = grep { $_->{call} ne $main::mycall } @nodes;
768 @nodes = grep { $_->dxchan != $self } @nodes if @nodes;
769 @nodes = grep { !$_->dxchan->{isolate} } @nodes if @nodes;
770 @localnodes = grep { $_->dxchan->{call} eq $_->{call} } @nodes if @nodes;
771 unshift @localnodes, DXCluster->get_exact($main::mycall);
772 @remotenodes = grep { $_->dxchan->{call} ne $_->{call} } @nodes if @nodes;
775 my @s = $me->pc19(@localnodes, @remotenodes);
777 my $routeit = adjust_hops($self, $_);
778 $self->send($routeit) if $routeit;
781 # get all the users connected on the above nodes and send them out
782 foreach $n (@localnodes, @remotenodes) {
783 my @users = values %{$n->list};
784 my @s = pc16($n, @users);
786 my $routeit = adjust_hops($self, $_);
787 $self->send($routeit) if $routeit;
793 # route a message down an appropriate interface for a callsign
795 # is called route(to, pcline);
799 my ($call, $line) = @_;
800 my $cl = DXCluster->get_exact($call);
803 my $dxchan = $cl->{dxchan};
805 my $routeit = adjust_hops($dxchan, $line); # adjust its hop count by node name
807 $dxchan->send($routeit) if $dxchan;
813 # broadcast a message to all clusters taking into account isolation
814 # [except those mentioned after buffer]
817 my $s = shift; # the line to be rebroadcast
818 my @except = @_; # to all channels EXCEPT these (dxchannel refs)
819 my @dxchan = get_all_ak1a();
822 # send it if it isn't the except list and isn't isolated and still has a hop count
823 foreach $dxchan (@dxchan) {
824 next if grep $dxchan == $_, @except;
825 my $routeit = adjust_hops($dxchan, $s); # adjust its hop count by node name
826 $dxchan->send($routeit) unless $dxchan->{isolate} || !$routeit;
830 # broadcast a message to all clusters ignoring isolation
831 # [except those mentioned after buffer]
832 sub broadcast_all_ak1a
834 my $s = shift; # the line to be rebroadcast
835 my @except = @_; # to all channels EXCEPT these (dxchannel refs)
836 my @dxchan = get_all_ak1a();
839 # send it if it isn't the except list and isn't isolated and still has a hop count
840 foreach $dxchan (@dxchan) {
841 next if grep $dxchan == $_, @except;
842 my $routeit = adjust_hops($dxchan, $s); # adjust its hop count by node name
843 $dxchan->send($routeit);
847 # broadcast to all users
848 # storing the spot or whatever until it is in a state to receive it
851 my $s = shift; # the line to be rebroadcast
852 my $sort = shift; # the type of transmission
853 my $fref = shift; # a reference to an object to filter on
854 my @except = @_; # to all channels EXCEPT these (dxchannel refs)
855 my @dxchan = get_all_users();
859 foreach $dxchan (@dxchan) {
860 next if grep $dxchan == $_, @except;
863 broadcast_list($s, $sort, $fref, @out);
866 # broadcast to a list of users
874 foreach $dxchan (@_) {
878 next unless $dxchan->{dx};
879 ($filter) = Filter::it($dxchan->{spotfilter}, @{$fref}) if ref $fref;
882 next if $sort eq 'ann' && !$dxchan->{ann};
883 next if $sort eq 'wwv' && !$dxchan->{wwv};
884 next if $sort eq 'wx' && !$dxchan->{wx};
886 $s =~ s/\a//og unless $dxchan->{beep};
888 if ($dxchan->{state} eq 'prompt' || $dxchan->{state} eq 'convers') {
897 # gimme all the ak1a nodes
901 my @list = DXChannel->get_all();
904 foreach $ref (@list) {
905 push @out, $ref if $ref->is_ak1a;
910 # return a list of all users
913 my @list = DXChannel->get_all();
916 foreach $ref (@list) {
917 push @out, $ref if $ref->is_user;
922 # return a list of all user callsigns
923 sub get_all_user_calls
925 my @list = DXChannel->get_all();
928 foreach $ref (@list) {
929 push @out, $ref->call if $ref->is_user;
935 # obtain the hops from the list for this callsign and pc no
941 my $hops = $DXProt::hopcount{$pcno};
942 $hops = $DXProt::def_hopcount if !$hops;
947 # adjust the hop count on a per node basis using the user loadable
948 # hop table if available or else decrement an existing one
955 my $call = $self->{call};
958 if (($hops) = $s =~ /\^H(\d+)\^~?$/o) {
959 my ($pcno) = $s =~ /^PC(\d\d)/o;
960 confess "$call called adjust_hops with '$s'" unless $pcno;
961 my $ref = $nodehops{$call} if %nodehops;
963 my $newhops = $ref->{$pcno};
964 return "" if defined $newhops && $newhops == 0;
965 $newhops = $ref->{default} unless $newhops;
966 return "" if defined $newhops && $newhops == 0;
967 $newhops = $hops if !$newhops;
968 $s =~ s/\^H(\d+)(\^~?)$/\^H$newhops$2/ if $newhops;
970 # simply decrement it
973 $s =~ s/\^H(\d+)(\^~?)$/\^H$hops$2/ if $hops;
985 return $self->msg('lh1') unless -e "$main::data/hop_table.pl";
986 do "$main::data/hop_table.pl";
991 # remove leading and trailing spaces from an input string
999 # add a ping request to the ping queues
1002 my ($from, $to) = @_;
1003 my $ref = $pings{$to};
1004 $ref = $pings{$to} = [] if !$ref;
1007 $r->{t} = $main::systime;
1008 route($to, pc51($to, $main::mycall, 1));
1012 # add a rcmd request to the rcmd queues
1015 my ($from, $to, $cmd) = @_;
1018 $r->{t} = $main::systime;
1020 route($to, pc34($main::mycall, $to, $cmd));