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