Assume that PC12s coming from pc9x nodes are coming via some other
route and have been converted.
Increase the default announce dup age from 5 to 18 hrs.
+25Oct10=======================================================================
+1. Drop PC12s purporting to originate at nodes that do PC9x (suggestion from
+Lee VE1CC).
+2. Increase default dup age for announces from 5 -> 18 hours.
23Oct10=======================================================================
1. add dbexport command to allow the export of ak1a style databases to a
file.
use vars qw(%dup $duplth $dupage $filterdef);
$duplth = 30; # the length of text to use in the deduping
-$dupage = 5*3600; # the length of time to hold ann dups
+$dupage = 18*3600; # the length of time to hold ann dups
$filterdef = bless ([
# tag, sort, field, priv, special parser
['by', 'c', 0],
return;
}
+ # ignore PC12s from origins that use PCxx protocol
+ my $oref = Route::get($origin);
+ if ($oref->do_pc9x) {
+ dbg("PCPROT: PC12 rxed from PC9x node, ignored") if isdbg('chanerr');
+ return;
+ }
my $dxchan;
$version = '1.55';
$subversion = '0';
-$build = '76';
-$gitversion = '75987f0';
+$build = '77';
+$gitversion = '7d74331';
1;