5d7aee9a73cfe519c95a080dc5d128d725959b15
[spider.git] / perl / DXProtHandle.pm
1 #
2 #
3 # This module impliments the handlers for the protocal mode for a dx cluster
4 #
5 # Copyright (c) 1998-2006 Dirk Koopman G1TLH
6 #
7 # $Id$
8
9
10 package DXProt;
11
12 @ISA = qw(DXChannel);
13
14 use DXUtil;
15 use DXChannel;
16 use DXUser;
17 use DXM;
18 use DXProtVars;
19 use DXCommandmode;
20 use DXLog;
21 use Spot;
22 use DXProtout;
23 use DXDebug;
24 use Filter;
25 use Local;
26 use DXDb;
27 use AnnTalk;
28 use Geomag;
29 use WCY;
30 use BadWords;
31 use DXHash;
32 use Route;
33 use Route::Node;
34 use Script;
35 use Investigate;
36 use RouteDB;
37
38
39 use strict;
40
41 use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restime $eph_pc34_restime
42                         $last_hour $last10 %eph  %pings %rcmds $ann_to_talk
43                         $pingint $obscount %pc19list $chatdupeage $chatimportfn
44                         $investigation_int $pc19_version $myprot_version
45                         %nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
46                         $allowzero $decode_dk0wcy $send_opernam @checklist
47                         $eph_pc15_restime
48                    );
49         
50 # incoming talk commands
51 sub handle_10
52 {
53         my $self = shift;
54         my $pcno = shift;
55         my $line = shift;
56         my $origin = shift;
57
58         # rsfp check
59         return if $rspfcheck and !$self->rspfcheck(0, $_[6], $_[1]);
60                         
61         # will we allow it at all?
62         if ($censorpc) {
63                 my @bad;
64                 if (@bad = BadWords::check($_[3])) {
65                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
66                         return;
67                 }
68         }
69
70         # is it for me or one of mine?
71         my ($from, $to, $via, $call, $dxchan);
72         $from = $_[1];
73         if ($_[5] gt ' ') {
74                 $via = $_[2];
75                 $to = $_[5];
76         } else {
77                 $to = $_[2];
78         }
79
80         # if this is a 'nodx' node then ignore it
81         if ($badnode->in($_[6]) || ($via && $badnode->in($via))) {
82                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
83                 return;
84         }
85
86         # if this is a 'bad spotter' user then ignore it
87         my $nossid = $from;
88         $nossid =~ s/-\d+$//;
89         if ($badspotter->in($nossid)) {
90                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
91                 return;
92         }
93
94         # if we are converting announces to talk is it a dup?
95         if ($ann_to_talk) {
96                 if (AnnTalk::is_talk_candidate($from, $_[3]) && AnnTalk::dup($from, $to, $_[3])) {
97                         dbg("DXPROT: Dupe talk from announce, dropped") if isdbg('chanerr');
98                         return;
99                 }
100         }
101
102         # remember a route to this node and also the node on which this user is
103         RouteDB::update($_[6], $self->{call});
104 #       RouteDB::update($to, $_[6]);
105
106         # it is here and logged on
107         $dxchan = DXChannel::get($main::myalias) if $to eq $main::mycall;
108         $dxchan = DXChannel::get($to) unless $dxchan;
109         if ($dxchan && $dxchan->is_user) {
110                 $_[3] =~ s/\%5E/^/g;
111                 $dxchan->talk($from, $to, $via, $_[3]);
112                 return;
113         }
114
115         # is it elsewhere, visible on the cluster via the to address?
116         # note: this discards the via unless the to address is on
117         # the via address
118         my ($ref, $vref);
119         if ($ref = Route::get($to)) {
120                 $vref = Route::Node::get($via) if $via;
121                 $vref = undef unless $vref && grep $to eq $_, $vref->users;
122                 $ref->dxchan->talk($from, $to, $vref ? $via : undef, $_[3], $_[6]);
123                 return;
124         }
125
126         # can we see an interface to send it down?
127         
128         # not visible here, send a message of condolence
129         $vref = undef;
130         $ref = Route::get($from);
131         $vref = $ref = Route::Node::get($_[6]) unless $ref; 
132         if ($ref) {
133                 $dxchan = $ref->dxchan;
134                 $dxchan->talk($main::mycall, $from, $vref ? $vref->call : undef, $dxchan->msg('talknh', $to) );
135         }
136 }
137
138 # DX Spot handling
139 sub handle_11
140 {
141         my $self = shift;
142         my $pcno = shift;
143         my $line = shift;
144         my $origin = shift;
145
146         # route 'foreign' pc26s 
147         if ($pcno == 26) {
148                 if ($_[7] ne $main::mycall) {
149                         $self->route($_[7], $line);
150                         return;
151                 }
152         }
153                         
154         # rsfp check
155         #                       return if $rspfcheck and !$self->rspfcheck(1, $_[7], $_[6]);
156         
157         # is the spotted callsign blank? This should really be trapped earlier but it
158         # could break other protocol sentences. Also check for lower case characters.
159         if ($_[2] =~ /^\s*$/) {
160                 dbg("PCPROT: blank callsign, dropped") if isdbg('chanerr');
161                 return;
162         }
163         if ($_[2] =~ /[a-z]/) {
164                 dbg("PCPROT: lowercase characters, dropped") if isdbg('chanerr');
165                 return;
166         }
167
168
169         # if this is a 'nodx' node then ignore it
170         if ($badnode->in($_[7])) {
171                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
172                 return;
173         }
174                         
175         # if this is a 'bad spotter' user then ignore it
176         my $nossid = $_[6];
177         $nossid =~ s/-\d+$//;
178         if ($badspotter->in($nossid)) {
179                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
180                 return;
181         }
182                         
183         # convert the date to a unix date
184         my $d = cltounix($_[3], $_[4]);
185         # bang out (and don't pass on) if date is invalid or the spot is too old (or too young)
186         if (!$d || ($pcno == 11 && ($d < $main::systime - $pc11_max_age || $d > $main::systime + 900))) {
187                 dbg("PCPROT: Spot ignored, invalid date or out of range ($_[3] $_[4])\n") if isdbg('chanerr');
188                 return;
189         }
190
191         # is it 'baddx'
192         if ($baddx->in($_[2]) || BadWords::check($_[2]) || $_[2] =~ /COCK/) {
193                 dbg("PCPROT: Bad DX spot, ignored") if isdbg('chanerr');
194                 return;
195         }
196                         
197         # do some de-duping
198         $_[5] =~ s/^\s+//;                      # take any leading blanks off
199         $_[2] = unpad($_[2]);           # take off leading and trailing blanks from spotted callsign
200         if ($_[2] =~ /BUST\w*$/) {
201                 dbg("PCPROT: useless 'BUSTED' spot") if isdbg('chanerr');
202                 return;
203         }
204         if ($censorpc) {
205                 my @bad;
206                 if (@bad = BadWords::check($_[5])) {
207                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
208                         return;
209                 }
210         }
211
212         # remember a route
213 #       RouteDB::update($_[7], $self->{call});
214 #       RouteDB::update($_[6], $_[7]);
215         
216         my @spot = Spot::prepare($_[1], $_[2], $d, $_[5], $nossid, $_[7]);
217         # global spot filtering on INPUT
218         if ($self->{inspotsfilter}) {
219                 my ($filter, $hops) = $self->{inspotsfilter}->it(@spot);
220                 unless ($filter) {
221                         dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
222                         return;
223                 }
224         }
225
226         # this goes after the input filtering, but before the add
227         # so that if it is input filtered, it isn't added to the dup
228         # list. This allows it to come in from a "legitimate" source
229         if (Spot::dup(@spot[0..4,5])) {
230                 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
231                 return;
232         }
233
234         # add it 
235         Spot::add(@spot);
236
237         #
238         # @spot at this point contains:-
239         # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node
240         # then  spotted itu, spotted cq, spotters itu, spotters cq
241         # you should be able to route on any of these
242         #
243                         
244         # fix up qra locators of known users 
245         my $user = DXUser->get_current($spot[4]);
246         if ($user) {
247                 my $qra = $user->qra;
248                 unless ($qra && is_qra($qra)) {
249                         my $lat = $user->lat;
250                         my $long = $user->long;
251                         if (defined $lat && defined $long) {
252                                 $user->qra(DXBearing::lltoqra($lat, $long)); 
253                                 $user->put;
254                         }
255                 }
256
257                 # send a remote command to a distant cluster if it is visible and there is no
258                 # qra locator and we havn't done it for a month.
259
260                 unless ($user->qra) {
261                         my $node;
262                         my $to = $user->homenode;
263                         my $last = $user->lastoper || 0;
264                         if ($send_opernam && $to && $to ne $main::mycall && $main::systime > $last + $DXUser::lastoperinterval && ($node = Route::Node::get($to)) ) {
265                                 my $cmd = "forward/opernam $spot[4]";
266                                 # send the rcmd but we aren't interested in the replies...
267                                 my $dxchan = $node->dxchan;
268                                 if ($dxchan && $dxchan->is_clx) {
269                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
270                                 } else {
271                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
272                                 }
273                                 if ($to ne $_[7]) {
274                                         $to = $_[7];
275                                         $node = Route::Node::get($to);
276                                         if ($node) {
277                                                 $dxchan = $node->dxchan;
278                                                 if ($dxchan && $dxchan->is_clx) {
279                                                         route(undef, $to, pc84($main::mycall, $to, $main::mycall, $cmd));
280                                                 } else {
281                                                         route(undef, $to, pc34($main::mycall, $to, $cmd));
282                                                 }
283                                         }
284                                 }
285                                 $user->lastoper($main::systime);
286                                 $user->put;
287                         }
288                 }
289         }
290                                 
291         # local processing 
292         my $r;
293         eval {
294                 $r = Local::spot($self, @spot);
295         };
296         #                       dbg("Local::spot1 error $@") if isdbg('local') if $@;
297         return if $r;
298
299         # DON'T be silly and send on PC26s!
300         return if $pcno == 26;
301
302         # send out the filtered spots
303         send_dx_spot($self, $line, @spot) if @spot;
304 }
305                 
306 # announces
307 sub handle_12
308 {
309         my $self = shift;
310         my $pcno = shift;
311         my $line = shift;
312         my $origin = shift;
313
314         #                       return if $rspfcheck and !$self->rspfcheck(1, $_[5], $_[1]);
315
316         # announce duplicate checking
317         $_[3] =~ s/^\s+//;                      # remove leading blanks
318
319         if ($censorpc) {
320                 my @bad;
321                 if (@bad = BadWords::check($_[3])) {
322                         dbg("PCPROT: Bad words: @bad, dropped") if isdbg('chanerr');
323                         return;
324                 }
325         }
326
327         # if this is a 'nodx' node then ignore it
328         if ($badnode->in($_[5])) {
329                 dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr');
330                 return;
331         }
332
333         # if this is a 'bad spotter' user then ignore it
334         my $nossid = $_[1];
335         $nossid =~ s/-\d+$//;
336         if ($badspotter->in($nossid)) {
337                 dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr');
338                 return;
339         }
340
341
342         my $dxchan;
343         
344         if ((($dxchan = DXChannel::get($_[2])) && $dxchan->is_user) || $_[4] =~ /^[\#\w.]+$/){
345                 $self->send_chat($line, @_[1..6]);
346         } elsif ($_[2] eq '*' || $_[2] eq $main::mycall) {
347
348                 # remember a route
349 #               RouteDB::update($_[5], $self->{call});
350 #               RouteDB::update($_[1], $_[5]);
351
352                 # ignore something that looks like a chat line coming in with sysop
353                 # flag - this is a kludge...
354                 if ($_[3] =~ /^\#\d+ / && $_[4] eq '*') {
355                         dbg('PCPROT: Probable chat rewrite, dropped') if isdbg('chanerr');
356                         return;
357                 }
358
359                 # here's a bit of fun, convert incoming ann with a callsign in the first word
360                 # or one saying 'to <call>' to a talk if we can route to the recipient
361                 if ($ann_to_talk) {
362                         my $call = AnnTalk::is_talk_candidate($_[1], $_[3]);
363                         if ($call) {
364                                 my $ref = Route::get($call);
365                                 if ($ref) {
366                                         $dxchan = $ref->dxchan;
367                                         $dxchan->talk($_[1], $call, undef, $_[3], $_[5]) if $dxchan != $self;
368                                         return;
369                                 }
370                         }
371                 }
372         
373                 # send it
374                 $self->send_announce($line, @_[1..6]);
375         } else {
376                 $self->route($_[2], $line);
377         }
378 }
379
380 sub handle_15
381 {
382         my $self = shift;
383         my $pcno = shift;
384         my $line = shift;
385         my $origin = shift;
386
387         if (eph_dup($line, $eph_pc15_restime)) {
388                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
389         } else {
390                 unless ($self->{isolate}) {
391                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
392                 }
393         }
394 }
395                 
396 # incoming user         
397 sub handle_16
398 {
399         my $self = shift;
400         my $pcno = shift;
401         my $line = shift;
402         my $origin = shift;
403
404         # general checks
405         my $dxchan;
406         my $ncall = $_[1];
407         my $newline = "PC16^";
408                         
409         # dos I want users from this channel?
410         unless ($self->user->wantpc16) {
411                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
412                 return;
413         }
414         # is it me?
415         if ($ncall eq $main::mycall) {
416                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
417                 return;
418         }
419
420         my $h;
421         $h = 1 if DXChannel::get($ncall);
422         RouteDB::update($ncall, $self->{call}, $h);
423
424         if (eph_dup($line)) {
425                 dbg("PCPROT: dup PC16 detected") if isdbg('chanerr');
426                 return;
427         }
428
429         unless ($h) {
430                 dbg("PCPROT: non-local PC16, ignored") if isdbg('chanerr');
431                 return;
432         }
433
434         my $parent = Route::Node::get($ncall); 
435
436         if ($parent) {
437                 $dxchan = $parent->dxchan;
438                 if ($dxchan && $dxchan ne $self) {
439                         dbg("PCPROT: PC16 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
440                         return;
441                 }
442
443                 # input filter if required
444                 return unless $self->in_filter_route($parent);
445         }
446
447         my $i;
448         my @rout;
449         for ($i = 2; $i < $#_; $i++) {
450                 my ($call, $conf, $here) = $_[$i] =~ /^(\S+) (\S) (\d)/o;
451                 next unless $call && $conf && defined $here && is_callsign($call);
452                 next if $call eq $main::mycall;
453
454                 eph_del_regex("^PC17\\^$call\\^$ncall");
455                                 
456                 $conf = $conf eq '*';
457
458                 # reject this if we think it is a node already
459                 my $r = Route::Node::get($call);
460                 my $u = DXUser->get_current($call) unless $r;
461                 if ($r || ($u && $u->is_node)) {
462                         dbg("PCPROT: $call is a node") if isdbg('chanerr');
463                         next;
464                 }
465                                 
466                 $r = Route::User::get($call);
467                 my $flags = Route::here($here)|Route::conf($conf);
468                                 
469                 if ($r) {
470                         my $au = $r->addparent($parent);                                        
471                         if ($r->flags != $flags) {
472                                 $r->flags($flags);
473                                 $au = $r;
474                         }
475                         push @rout, $r if $au;
476                 } else {
477                         push @rout, $parent->add_user($call, $flags);
478                 }
479                 
480                 # send info to all logged in thingies
481                 $self->tell_login('loginu', "$ncall: $call") if DXUser->get_current($ncall)->is_local_node;
482                 $self->tell_buddies('loginb', $call, $ncall);
483                                 
484                 # add this station to the user database, if required
485 #               $call =~ s/-\d+$//o;    # remove ssid for users
486                 my $user = DXUser->get_current($call);
487                 $user = DXUser->new($call) if !$user;
488                 $user->homenode($parent->call) if !$user->homenode;
489                 $user->node($parent->call);
490                 $user->lastin($main::systime) unless DXChannel::get($call);
491                 $user->put;
492         }
493         if (@rout) {
494                 $self->route_pc16($origin, $line, $parent, @rout);
495                 $self->route_pc92a($main::mycall, undef, $parent, @rout);
496         }
497 }
498                 
499 # remove a user
500 sub handle_17
501 {
502         my $self = shift;
503         my $pcno = shift;
504         my $line = shift;
505         my $origin = shift;
506         my $dxchan;
507         my $ncall = $_[2];
508         my $ucall = $_[1];
509
510         eph_del_regex("^PC16\\^$ncall.*$ucall");
511                         
512         # do I want users from this channel?
513         unless ($self->user->wantpc16) {
514                 dbg("PCPROT: don't send users to $self->{call}") if isdbg('chanerr');
515                 return;
516         }
517         if ($ncall eq $main::mycall) {
518                 dbg("PCPROT: trying to alter config on this node from outside!") if isdbg('chanerr');
519                 return;
520         }
521
522         RouteDB::delete($ncall, $self->{call});
523
524         unless ($ncall eq $self->{call}) {
525                 dbg("PCPROT: PC17 from non-local $ncall, ignored") if isdbg('chanerr');
526                 return;
527         }
528
529         my $uref = Route::User::get($ucall);
530         unless ($uref) {
531                 dbg("PCPROT: Route::User $ucall not in config") if isdbg('chanerr');
532         }
533         my $parent = Route::Node::get($ncall);
534         unless ($parent) {
535                 dbg("PCPROT: Route::Node $ncall not in config") if isdbg('chanerr');
536         }                       
537
538         $dxchan = $parent->dxchan if $parent;
539         if ($dxchan && $dxchan ne $self) {
540                 dbg("PCPROT: PC17 from $self->{call} trying to alter locally connected $ncall, ignored!") if isdbg('chanerr');
541                 return;
542         }
543
544         # input filter if required and then remove user if present
545         if ($parent) {
546 #               return unless $self->in_filter_route($parent);  
547                 $parent->del_user($uref) if $uref;
548         } else {
549                 $parent = Route->new($ncall);  # throw away
550         }
551
552         # send info to all logged in thingies
553         $self->tell_login('logoutu', "$ncall: $ucall") if DXUser->get_current($ncall)->is_local_node;
554         $self->tell_buddies('logoutb', $ucall, $ncall);
555
556         if (eph_dup($line)) {
557                 dbg("PCPROT: dup PC17 detected") if isdbg('chanerr');
558                 return;
559         }
560
561         $uref = Route->new($ucall) unless $uref; # throw away
562         $self->route_pc17($origin, $line, $parent, $uref);
563         $self->route_pc92d($main::mycall, undef, $parent, $uref);
564 }
565                 
566 # link request
567 sub handle_18
568 {
569         my $self = shift;
570         my $pcno = shift;
571         my $line = shift;
572         my $origin = shift;
573         $self->state('init');   
574
575         # record the type and version offered
576         if ($_[1] =~ /DXSpider Version: (\d+\.\d+) Build: (\d+\.\d+)/) {
577                 $self->version(53 + $1);
578                 $self->user->version(53 + $1);
579                 $self->build(0 + $2);
580                 $self->user->build(0 + $2);
581                 unless ($self->is_spider) {
582                         $self->user->sort('S');
583                         $self->user->put;
584                         $self->sort('S');
585                 }
586                 $self->{handle_xml}++ if DXXml::available() && $_[1] =~ /\bxml\b/;
587                 $self->{do_pc92}++ if $_[1] =~ /\bpc92\b/;
588         } else {
589                 $self->version(50.0);
590                 $self->version($_[2] / 100) if $_[2] && $_[2] =~ /^\d+$/;
591                 $self->user->version($self->version);
592         }
593
594         # first clear out any nodes on this dxchannel
595         my $parent = Route::Node::get($self->{call});
596         my @rout = $parent->del_nodes;
597         $self->route_pc21($origin, $line, @rout, $parent) if @rout;
598         $self->send_local_config();
599         $self->send(pc20());
600 }
601                 
602 sub check_add_node
603 {
604         my $call = shift;
605         
606         # add this station to the user database, if required (don't remove SSID from nodes)
607         my $user = DXUser->get_current($call);
608         if (!$user) {
609                 $user = DXUser->new($call);
610                 $user->priv(1);         # I have relented and defaulted nodes
611                 $user->lockout(1);
612                 $user->homenode($call);
613                 $user->node($call);
614         }
615         $user->sort('A') unless $user->is_node;
616         return $user;
617 }
618
619 # incoming cluster list
620 sub handle_19
621 {
622         my $self = shift;
623         my $pcno = shift;
624         my $line = shift;
625         my $origin = shift;
626
627         my $i;
628         my $newline = "PC19^";
629
630         # new routing list
631         my @rout;
632
633         # first get the INTERFACE node
634         my $parent = Route::Node::get($self->{call});
635         unless ($parent) {
636                 dbg("DXPROT: my parent $self->{call} has disappeared");
637                 $self->disconnect;
638                 return;
639         }
640
641         # parse the PC19
642         # 
643         # We are making a major change from now on. We are only going to accept
644         # PC19s from directly connected nodes.  This means that we are probably
645         # going to throw away most of the data that we are being sent. 
646         #
647         # The justification for this is that most of it is wrong or out of date
648         # anyway. 
649         # 
650         # From now on we are only going to believe PC92 data.
651         #
652         for ($i = 1; $i < $#_-1; $i += 4) {
653                 my $here = $_[$i];
654                 my $call = uc $_[$i+1];
655                 my $conf = $_[$i+2];
656                 my $ver = $_[$i+3];
657                 next unless defined $here && defined $conf && is_callsign($call);
658
659                 eph_del_regex("^PC(?:21\\^$call|17\\^[^\\^]+\\^$call)");
660                                 
661                 # check for sane parameters
662                 #                               $ver = 5000 if $ver eq '0000';
663                 next unless $ver && $ver =~ /^\d+$/;
664                 next if $ver < 5000;    # only works with version 5 software
665                 next if length $call < 3; # min 3 letter callsigns
666                 next if $call eq $main::mycall;
667
668                 # check that this PC19 isn't trying to alter the wrong dxchan
669                 my $dxchan = DXChannel::get($call);
670                 if ($dxchan && $dxchan != $self) {
671                         dbg("PCPROT: PC19 from $self->{call} trying to alter wrong locally connected $call, ignored!") if isdbg('chanerr');
672                         next;
673                 }
674
675                 my $user = check_add_node($call);
676                 
677 #               if (eph_dup($genline)) {
678 #                       dbg("PCPROT: dup PC19 for $call detected") if isdbg('chanerr');
679 #                       next;
680 #               }
681
682                 RouteDB::update($call, $self->{call}, $dxchan ? 1 : undef);
683
684                 unless ($dxchan) {
685                         dbg("PCPROT: PC19 not directly connected, ignored") if isdbg('chanerr');
686                         next;
687                 }
688
689                 my $r = Route::Node::get($call);
690                 my $flags = Route::here($here)|Route::conf($conf);
691
692                 # modify the routing table if it is in it, otherwise store it in the pc19list for now
693                 if ($r) {
694                         my $ar;
695                         if ($call ne $parent->call) {
696                                 if ($self->in_filter_route($r)) {
697                                         $ar = $parent->add($call, $ver, $flags);
698 #                                       push @rout, $ar if $ar;
699                                 } else {
700                                         next;
701                                 }
702                         }
703                         if ($r->version ne $ver || $r->flags != $flags) {
704                                 $r->version($ver);
705                                 $r->flags($flags);
706                         }
707                         push @rout, $r;
708                 } else {
709                         if ($call eq $self->{call} || $user->wantroutepc19) {
710                                 my $new = Route->new($call); # throw away
711                                 if ($self->in_filter_route($new)) {
712                                         my $ar = $parent->add($call, $ver, $flags);
713                                         $user->wantroutepc19(1) unless defined $user->wantroutepc19;
714                                         push @rout, $ar if $ar;
715                                 } else {
716                                         next;
717                                 }
718                         }
719                 }
720
721                 # unbusy and stop and outgoing mail (ie if somehow we receive another PC19 without a disconnect)
722                 my $mref = DXMsg::get_busy($call);
723                 $mref->stop_msg($call) if $mref;
724                                 
725                 $user->lastin($main::systime) unless DXChannel::get($call);
726                 $user->put;
727         }
728
729         # we are not automatically sending out PC19s, we send out a composite PC21,PC19 instead
730         # but remember there will only be one (pair) these because any extras will be
731         # thrown away.
732         if (@rout) {
733                 $self->route_pc21($self->{call}, $line, @rout);
734                 $self->route_pc19($self->{call}, $line, @rout);
735                 $self->route_pc92a($main::mycall, $line, $main::routeroot, @rout);
736         }
737 }
738                 
739 # send local configuration
740 sub handle_20
741 {
742         my $self = shift;
743         my $pcno = shift;
744         my $line = shift;
745         my $origin = shift;
746         $self->send_local_config();
747         $self->send(pc22());
748         $self->state('normal');
749         $self->{lastping} = 0;
750 }
751                 
752 # delete a cluster from the list
753 #
754 # This should never occur for directly connected nodes.
755 #
756 sub handle_21
757 {
758         my $self = shift;
759         my $pcno = shift;
760         my $line = shift;
761         my $origin = shift;
762         my $call = uc $_[1];
763
764         eph_del_regex("^PC1[679].*$call");
765                         
766         # if I get a PC21 from the same callsign as self then ignore it
767         if ($call eq $self->call) {
768                 dbg("PCPROT: self referencing PC21 from $self->{call}");
769                 return;
770         }
771
772         RouteDB::delete($call, $self->{call});
773
774         my $parent = Route::Node::get($self->{call});
775         unless ($parent) {
776                 dbg("PCPROT: my parent $self->{call} has disappeared");
777                 $self->disconnect;
778                 return;
779         }
780
781         my @rout;
782         
783         if ($call ne $main::mycall) { # don't allow malicious buggers to disconnect me!
784                 my $node = Route::Node::get($call);
785                 if ($node) {
786                         
787                         my $dxchan = DXChannel::get($call);
788                         if ($dxchan && $dxchan != $self) {
789                                 dbg("PCPROT: PC21 from $self->{call} trying to alter locally connected $call, ignored!") if isdbg('chanerr');
790                                 return;
791                         }
792                         
793                         # input filter it
794                         return unless $self->in_filter_route($node);
795                         
796                         # routing objects, force a PC21 if it is local
797                         push @rout, $node->del($parent);
798                         push @rout, $call if $dxchan && @rout == 0;
799                 }
800         } else {
801                 dbg("PCPROT: I WILL _NOT_ be disconnected!") if isdbg('chanerr');
802                 return;
803         }
804
805         if (@rout) {
806                 $self->route_pc21($origin, $line, @rout);
807                 $self->route_pc92d($main::mycall, $line, $main::routeroot, @rout);
808         }
809 }
810                 
811
812 sub handle_22
813 {
814         my $self = shift;
815         my $pcno = shift;
816         my $line = shift;
817         my $origin = shift;
818         $self->state('normal');
819         $self->{lastping} = 0;
820 }
821                                 
822 # WWV info
823 sub handle_23
824 {
825         my $self = shift;
826         my $pcno = shift;
827         my $line = shift;
828         my $origin = shift;
829                         
830         # route foreign' pc27s 
831         if ($pcno == 27) {
832                 if ($_[8] ne $main::mycall) {
833                         $self->route($_[8], $line);
834                         return;
835                 }
836         }
837
838         # only do a rspf check on PC23 (not 27)
839         if ($pcno == 23) {
840                 return if $rspfcheck and !$self->rspfcheck(1, $_[8], $_[7])
841         }
842
843         # do some de-duping
844         my $d = cltounix($_[1], sprintf("%02d18Z", $_[2]));
845         my $sfi = unpad($_[3]);
846         my $k = unpad($_[4]);
847         my $i = unpad($_[5]);
848         my ($r) = $_[6] =~ /R=(\d+)/;
849         $r = 0 unless $r;
850         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
851                 dbg("PCPROT: WWV Date ($_[1] $_[2]) out of range") if isdbg('chanerr');
852                 return;
853         }
854
855         # global wwv filtering on INPUT
856         my @dxcc = ((Prefix::cty_data($_[7]))[0..2], (Prefix::cty_data($_[8]))[0..2]);
857         if ($self->{inwwvfilter}) {
858                 my ($filter, $hops) = $self->{inwwvfilter}->it(@_[7,8], $origin, @dxcc);
859                 unless ($filter) {
860                         dbg("PCPROT: Rejected by input wwv filter") if isdbg('chanerr');
861                         return;
862                 }
863         }
864         $_[7] =~ s/-\d+$//o;            # remove spotter's ssid
865         if (Geomag::dup($d,$sfi,$k,$i,$_[6],$_[7])) {
866                 dbg("PCPROT: Dup WWV Spot ignored\n") if isdbg('chanerr');
867                 return;
868         }
869                 
870         # note this only takes the first one it gets
871         Geomag::update($d, $_[2], $sfi, $k, $i, @_[6..8], $r);
872
873         my $rep;
874         eval {
875                 $rep = Local::wwv($self, $_[1], $_[2], $sfi, $k, $i, @_[6..8], $r);
876         };
877         #                       dbg("Local::wwv2 error $@") if isdbg('local') if $@;
878         return if $rep;
879
880         # DON'T be silly and send on PC27s!
881         return if $pcno == 27;
882
883         # broadcast to the eager world
884         send_wwv_spot($self, $line, $d, $_[2], $sfi, $k, $i, @_[6..8]);
885 }
886                 
887 # set here status
888 sub handle_24
889 {
890         my $self = shift;
891         my $pcno = shift;
892         my $line = shift;
893         my $origin = shift;
894         my $call = uc $_[1];
895         my ($nref, $uref);
896         $nref = Route::Node::get($call);
897         $uref = Route::User::get($call);
898         return unless $nref || $uref; # if we don't know where they are, it's pointless sending it on
899                         
900         if (eph_dup($line)) {
901                 dbg("PCPROT: Dup PC24 ignored\n") if isdbg('chanerr');
902                 return;
903         }
904         
905         $nref->here($_[2]) if $nref;
906         $uref->here($_[2]) if $uref;
907         my $ref = $nref || $uref;
908         return unless $self->in_filter_route($ref);
909
910         $self->route_pc24($origin, $line, $ref, $_[3]);
911 }
912                 
913 # merge request
914 sub handle_25
915 {
916         my $self = shift;
917         my $pcno = shift;
918         my $line = shift;
919         my $origin = shift;
920         if ($_[1] ne $main::mycall) {
921                 $self->route($_[1], $line);
922                 return;
923         }
924         if ($_[2] eq $main::mycall) {
925                 dbg("PCPROT: Trying to merge to myself, ignored") if isdbg('chanerr');
926                 return;
927         }
928
929         Log('DXProt', "Merge request for $_[3] spots and $_[4] WWV from $_[2]");
930                         
931         # spots
932         if ($_[3] > 0) {
933                 my @in = reverse Spot::search(1, undef, undef, 0, $_[3]);
934                 my $in;
935                 foreach $in (@in) {
936                         $self->send(pc26(@{$in}[0..4], $_[2]));
937                 }
938         }
939
940         # wwv
941         if ($_[4] > 0) {
942                 my @in = reverse Geomag::search(0, $_[4], time, 1);
943                 my $in;
944                 foreach $in (@in) {
945                         $self->send(pc27(@{$in}[0..5], $_[2]));
946                 }
947         }
948 }
949
950 sub handle_26 {goto &handle_11}
951 sub handle_27 {goto &handle_23}
952
953 # mail/file handling
954 sub handle_28
955 {
956         my $self = shift;
957         my $pcno = shift;
958         my $line = shift;
959         my $origin = shift;
960         if ($_[1] eq $main::mycall) {
961                 no strict 'refs';
962                 my $sub = "DXMsg::handle_$pcno";
963                 &$sub($self, @_);
964         } else {
965                 $self->route($_[1], $line) unless $self->is_clx;
966         }
967 }
968
969 sub handle_29 {goto &handle_28}
970 sub handle_30 {goto &handle_28}
971 sub handle_31 {goto &handle_28}
972 sub handle_32 {goto &handle_28}
973 sub handle_33 {goto &handle_28}
974                 
975 sub handle_34
976 {
977         my $self = shift;
978         my $pcno = shift;
979         my $line = shift;
980         my $origin = shift;
981         if (eph_dup($line, $eph_pc34_restime)) {
982                 dbg("PCPROT: dupe PC34, ignored") if isdbg('chanerr');
983         } else {
984                 $self->process_rcmd($_[1], $_[2], $_[2], $_[3]);
985         }
986 }
987                 
988 # remote command replies
989 sub handle_35
990 {
991         my $self = shift;
992         my $pcno = shift;
993         my $line = shift;
994         my $origin = shift;
995         eph_del_regex("^PC35\\^$_[2]\\^$_[1]\\^");
996         $self->process_rcmd_reply($_[1], $_[2], $_[1], $_[3]);
997 }
998                 
999 sub handle_36 {goto &handle_34}
1000
1001 # database stuff
1002 sub handle_37
1003 {
1004         my $self = shift;
1005         my $pcno = shift;
1006         my $line = shift;
1007         my $origin = shift;
1008         if ($_[1] eq $main::mycall) {
1009                 no strict 'refs';
1010                 my $sub = "DXDb::handle_$pcno";
1011                 &$sub($self, @_);
1012         } else {
1013                 $self->route($_[1], $line) unless $self->is_clx;
1014         }
1015 }
1016
1017 # node connected list from neighbour
1018 sub handle_38
1019 {
1020         my $self = shift;
1021         my $pcno = shift;
1022         my $line = shift;
1023         my $origin = shift;
1024 }
1025                 
1026 # incoming disconnect
1027 sub handle_39
1028 {
1029         my $self = shift;
1030         my $pcno = shift;
1031         my $line = shift;
1032         my $origin = shift;
1033         if ($_[1] eq $self->{call}) {
1034                 $self->disconnect(1);
1035         } else {
1036                 dbg("PCPROT: came in on wrong channel") if isdbg('chanerr');
1037         }
1038 }
1039
1040 sub handle_40 {goto &handle_28}
1041                 
1042 # user info
1043 sub handle_41
1044 {
1045         my $self = shift;
1046         my $pcno = shift;
1047         my $line = shift;
1048         my $origin = shift;
1049         my $call = $_[1];
1050
1051         my $l = $line;
1052         $l =~ s/[\x00-\x20\x7f-\xff]+//g; # remove all funny characters and spaces for dup checking
1053         if (eph_dup($l, $eph_info_restime)) {
1054                 dbg("PCPROT: dup PC41, ignored") if isdbg('chanerr');
1055                 return;
1056         }
1057                         
1058         # input filter if required
1059         #                       my $ref = Route::get($call) || Route->new($call);
1060         #                       return unless $self->in_filter_route($ref);
1061
1062         if ($_[3] eq $_[2] || $_[3] =~ /^\s*$/) {
1063                 dbg('PCPROT: invalid value') if isdbg('chanerr');
1064                 return;
1065         }
1066
1067         # add this station to the user database, if required
1068         my $user = DXUser->get_current($call);
1069         $user = DXUser->new($call) unless $user;
1070                         
1071         if ($_[2] == 1) {
1072                 $user->name($_[3]);
1073         } elsif ($_[2] == 2) {
1074                 $user->qth($_[3]);
1075         } elsif ($_[2] == 3) {
1076                 if (is_latlong($_[3])) {
1077                         my ($lat, $long) = DXBearing::stoll($_[3]);
1078                         $user->lat($lat);
1079                         $user->long($long);
1080                         $user->qra(DXBearing::lltoqra($lat, $long));
1081                 } else {
1082                         dbg('PCPROT: not a valid lat/long') if isdbg('chanerr');
1083                         return;
1084                 }
1085         } elsif ($_[2] == 4) {
1086                 $user->homenode($_[3]);
1087         } elsif ($_[2] == 5) {
1088                 if (is_qra(uc $_[3])) {
1089                         my ($lat, $long) = DXBearing::qratoll(uc $_[3]);
1090                         $user->lat($lat);
1091                         $user->long($long);
1092                         $user->qra(uc $_[3]);
1093                 } else {
1094                         dbg('PCPROT: not a valid QRA locator') if isdbg('chanerr');
1095                         return;
1096                 }
1097         }
1098         $user->lastoper($main::systime); # to cut down on excessive for/opers being generated
1099         $user->put;
1100
1101         unless ($self->{isolate}) {
1102                 DXChannel::broadcast_nodes($line, $self); # send it to everyone but me
1103         }
1104
1105         #  perhaps this IS what we want after all
1106         #                       $self->route_pc41($ref, $call, $_[2], $_[3], $_[4]);
1107 }
1108
1109 sub handle_42 {goto &handle_28}
1110
1111
1112 # database
1113 sub handle_44 {goto &handle_37}
1114 sub handle_45 {goto &handle_37}
1115 sub handle_46 {goto &handle_37}
1116 sub handle_47 {goto &handle_37}
1117 sub handle_48 {goto &handle_37}
1118                 
1119 # message and database
1120 sub handle_49
1121 {
1122         my $self = shift;
1123         my $pcno = shift;
1124         my $line = shift;
1125         my $origin = shift;
1126
1127         if (eph_dup($line)) {
1128                 dbg("PCPROT: Dup PC49 ignored\n") if isdbg('chanerr');
1129                 return;
1130         }
1131         
1132         if ($_[1] eq $main::mycall) {
1133                 DXMsg::handle_49($self, @_);
1134         } else {
1135                 $self->route($_[1], $line) unless $self->is_clx;
1136         }
1137 }
1138
1139 # keep alive/user list
1140 sub handle_50
1141 {
1142         my $self = shift;
1143         my $pcno = shift;
1144         my $line = shift;
1145         my $origin = shift;
1146
1147         my $call = $_[1];
1148
1149         RouteDB::update($call, $self->{call});
1150
1151         my $node = Route::Node::get($call);
1152         if ($node) {
1153                 return unless $node->call eq $self->{call};
1154                 $node->usercount($_[2]);
1155
1156                 # input filter if required
1157                 return unless $self->in_filter_route($node);
1158
1159                 $self->route_pc50($origin, $line, $node, $_[2], $_[3]) unless eph_dup($line);
1160         }
1161 }
1162                 
1163 # incoming ping requests/answers
1164 sub handle_51
1165 {
1166         my $self = shift;
1167         my $pcno = shift;
1168         my $line = shift;
1169         my $origin = shift;
1170         my $to = $_[1];
1171         my $from = $_[2];
1172         my $flag = $_[3];
1173
1174                         
1175         # is it for us?
1176         if ($to eq $main::mycall) {
1177                 if ($flag == 1) {
1178                         $self->send(pc51($from, $to, '0'));
1179                 } else {
1180                         DXXml::Ping::handle_ping_reply($self, $from);
1181                 }
1182         } else {
1183
1184                 RouteDB::update($from, $self->{call});
1185
1186                 if (eph_dup($line)) {
1187                         dbg("PCPROT: dup PC51 detected") if isdbg('chanerr');
1188                         return;
1189                 }
1190                 # route down an appropriate thingy
1191                 $self->route($to, $line);
1192         }
1193 }
1194
1195 # dunno but route it
1196 sub handle_75
1197 {
1198         my $self = shift;
1199         my $pcno = shift;
1200         my $line = shift;
1201         my $origin = shift;
1202         my $call = $_[1];
1203         if ($call ne $main::mycall) {
1204                 $self->route($call, $line);
1205         }
1206 }
1207
1208 # WCY broadcasts
1209 sub handle_73
1210 {
1211         my $self = shift;
1212         my $pcno = shift;
1213         my $line = shift;
1214         my $origin = shift;
1215         my $call = $_[1];
1216                         
1217         # do some de-duping
1218         my $d = cltounix($call, sprintf("%02d18Z", $_[2]));
1219         if (($pcno == 23 && $d < $main::systime - $pc23_max_age) || $d > $main::systime + 1500 || $_[2] < 0 || $_[2] > 23) {
1220                 dbg("PCPROT: WCY Date ($call $_[2]) out of range") if isdbg('chanerr');
1221                 return;
1222         }
1223         @_ = map { unpad($_) } @_;
1224         if (WCY::dup($d)) {
1225                 dbg("PCPROT: Dup WCY Spot ignored\n") if isdbg('chanerr');
1226                 return;
1227         }
1228                 
1229         my $wcy = WCY::update($d, @_[2..12]);
1230
1231         my $rep;
1232         eval {
1233                 $rep = Local::wcy($self, @_[1..12]);
1234         };
1235         # dbg("Local::wcy error $@") if isdbg('local') if $@;
1236         return if $rep;
1237
1238         # broadcast to the eager world
1239         send_wcy_spot($self, $line, $d, @_[2..12]);
1240 }
1241
1242 # remote commands (incoming)
1243 sub handle_84
1244 {
1245         my $self = shift;
1246         my $pcno = shift;
1247         my $line = shift;
1248         my $origin = shift;
1249         $self->process_rcmd($_[1], $_[2], $_[3], $_[4]);
1250 }
1251
1252 # remote command replies
1253 sub handle_85
1254 {
1255         my $self = shift;
1256         my $pcno = shift;
1257         my $line = shift;
1258         my $origin = shift;
1259         $self->process_rcmd_reply($_[1], $_[2], $_[3], $_[4]);
1260 }
1261
1262 # decode a pc92 call: flag call : version : build
1263 sub _decode_pc92_call
1264 {
1265         my $icall = shift;
1266         my @part = split /:/, $icall;
1267         my ($flag, $call) = unpack "A A*", $part[0];
1268         return () unless $flag && $flag ge '0' && $flag le '7';
1269         return () unless $call && is_callsign($call);
1270         my $is_node = $flag & 4;
1271         my $is_extnode = $flag & 2;
1272         my $here = $flag & 1;
1273         return ($call, $is_node, $is_extnode, $here, $part[1], $part[2]);
1274 }
1275
1276 # decode a pc92 call: flag call : version : build
1277 sub _encode_pc92_call
1278 {
1279         my $ref = shift;
1280         my $ext = shift;
1281         my $flag = 0;
1282         my $call = $ref->call; 
1283         my $extra = '';
1284         $flag |= $ref->here ? 1 : 0;
1285         if ($ref->isa('Route::Node') || $ref->isa('DXProt')) {
1286                 $flag |= 4;
1287                 my $dxchan = DXChannel::get($call);
1288                 $flag |= 2 if $call ne $main::mycall && $dxchan && !$dxchan->{do_pc92};
1289                 if ($ext) {
1290                         if ($ref->version) {
1291                                 my $version = $ref->version || 1.0;
1292                                 $version =  $version * 100 + 5300 if $version < 50;
1293                                 $extra .= ":" . $version;
1294                         }
1295                 }
1296         }
1297         return "$flag$call$extra";
1298 }
1299
1300 sub _add_thingy
1301 {
1302         my $parent = shift;
1303         my $s = shift;
1304         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($s);
1305         my @rout;
1306
1307         if ($call) {
1308                 if ($is_node) {
1309                         @rout = $parent->add($call, $version, Route::here($here));
1310                 } else {
1311                         @rout = $parent->add_user($call, Route::here($here));
1312                 }
1313         }
1314         return @rout;
1315 }
1316
1317 sub _del_thingy
1318 {
1319         my $parent = shift;
1320         my $s = shift;
1321         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($s);
1322         my @rout;
1323         if ($call) {
1324                 if ($is_node) {
1325                         my $nref = Route::Node::get($call);
1326                         @rout = $nref->del($parent) if $nref;
1327                 } else {
1328                         my $uref = Route::User::get($call);
1329                         @rout = $parent->del_user($uref) if $uref;
1330                 }
1331         }
1332         return @rout;
1333 }
1334
1335 # DXSpider routing entries
1336 sub handle_92
1337 {
1338         my $self = shift;
1339         my $pcno = shift;
1340         my $line = shift;
1341         my $origin = shift;
1342
1343         $self->{do_pc92} ||= 1;
1344
1345         my $pcall = $_[1];
1346         unless ($pcall) {
1347                 dbg("PCPROT: invalid callsign string '$_[1]', ignored") if isdbg('chanerr');
1348                 return;
1349         }
1350         my $t = $_[2];
1351         my $sort = $_[3];
1352         
1353         my @ent = grep {$_ && /^[0-7]/} @_[4 .. $#_];
1354         
1355         if ($pcall eq $main::mycall) {
1356                 dbg("PCPROT: looped back, ignored") if isdbg('chanerr');
1357                 return;
1358         }
1359
1360         my $parent = Route::Node::get($pcall);
1361         if ($parent) {
1362                 my $lastid = $parent->lastid->{92} || 0;
1363                 if ($lastid > $t) {
1364                         dbg("PCPROT: dup / old id <= $lastid, ignored") if isdbg('chanerr');
1365                         return;
1366                 }
1367         } else {
1368                 $parent = Route::Node->new($pcall);
1369         }
1370         $parent->lastid->{92} = $t;
1371
1372         if (@ent) {
1373                 my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($ent[0]);
1374                 if ($call && $is_node && $call eq $pcall) {
1375                         $parent->here(Route::here($here));
1376                         $parent->version($version) if $version;
1377                         $parent->build($build) if $build;
1378                 } elsif ($is_extnode) {
1379                         # reparent to external node (note that we must have received a 'C' or 'A' record
1380                         # from the true parent node for this external before we get one for the this node
1381                         unless ($parent = Route::Node::get($call)) {
1382                                 dbg("PCPROT: no previous C or A for this external node received, ignored") if isdbg('chanerr');
1383                                 return;
1384                         }
1385                 } else {
1386                         dbg("PCPROT: must be mycall or external node as first entry, ignored") if isdbg('chanerr');
1387                         return;
1388                 }
1389                 shift @ent;
1390         }
1391
1392         my (@radd, @rdel);
1393         
1394         if ($sort eq 'A') {
1395                 for (@ent) {
1396                         push @radd, _add_thingy($parent, $_);
1397                 }
1398         } elsif ($sort eq 'D') {
1399                 for (@ent) {
1400                         push @rdel, _del_thingy($parent, $_);
1401                 }
1402         } elsif ($sort eq 'C') {
1403                 my (@nodes, @users);
1404                 for (@ent) {
1405                         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1406                         if ($call) {
1407                                 if ($is_node) {
1408                                         push @nodes, $call;
1409                                 } else {
1410                                         push @users, $call;
1411                                 }
1412                         } else {
1413                                 dbg("DXPROT: pc92 call entry '$_' not decoded, ignored") if isdbg('chanerr'); 
1414                         }
1415                 }
1416
1417                 my ($dnodes, $dusers, $nnodes, $nusers) = $parent->calc_config_changes(\@nodes, \@users);
1418
1419                 for (@ent) {
1420                         my ($call, $is_node, $is_extnode, $here, $version, $build) = _decode_pc92_call($_);
1421                         if ($call) {
1422                                 push @radd,_add_thingy($parent, $_) if grep $call eq $_, (@$nnodes, @$nusers);
1423                                 push @rdel,_del_thingy($parent, $_) if grep $call eq $_, (@$dnodes, @$dusers);
1424                         }
1425                 }
1426         } else {
1427                 dbg("PCPROT: unknown action '$sort', ignored") if isdbg('chanerr');
1428                 return;
1429         }
1430
1431         $self->broadcast_route_pc9x($pcall, undef, $line, 0);
1432         foreach my $r (@rdel) {
1433                 next unless $r;
1434                 
1435                 $self->route_pc21($pcall, undef, $r) if $r->isa('Route::Node');
1436                 $self->route_pc17($pcall, undef, $parent, $r) if $r->isa('Route::User');
1437         }
1438         foreach my $r (@radd) {
1439                 next unless $r;
1440
1441                 $self->route_pc19($pcall, undef, $r) if $r->isa('Route::Node');
1442                 $self->route_pc16($pcall, undef, $parent, $r) if $r->isa('Route::User');
1443         }
1444 }
1445
1446 # if get here then rebroadcast the thing with its Hop count decremented (if
1447 # there is one). If it has a hop count and it decrements to zero then don't
1448 # rebroadcast it.
1449 #
1450 # NOTE - don't arrive here UNLESS YOU WANT this lump of protocol to be
1451 #        REBROADCAST!!!!
1452 #
1453
1454 sub handle_default
1455 {
1456         my $self = shift;
1457         my $pcno = shift;
1458         my $line = shift;
1459         my $origin = shift;
1460
1461         if (eph_dup($line)) {
1462                 dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
1463         } else {
1464                 unless ($self->{isolate}) {
1465                         DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
1466                 }
1467         }
1468 }