increse eph dupe time to 6 minutes for PC15

This commit is contained in:
minima 2007-01-05 14:05:12 +00:00
parent e69a98ce61
commit 9d7e25628d
2 changed files with 21 additions and 0 deletions

View File

@ -1,3 +1,5 @@
05Jan06=======================================================================
1. increase default ephemeral deduping on PC15 to 6 minutes (from 2).
23Nov06=======================================================================
1. added wrapping to over length lines in console.pl.
03Nov06=======================================================================

View File

@ -50,6 +50,7 @@ use vars qw($pc11_max_age $pc23_max_age $last_pc50 $eph_restime $eph_info_restim
$investigation_int $pc19_version $myprot_version
%nodehops $baddx $badspotter $badnode $censorpc $rspfcheck
$allowzero $decode_dk0wcy $send_opernam @checklist
$eph_pc15_restime
);
$pc11_max_age = 1*3600; # the maximum age for an incoming 'real-time' pc11
@ -70,6 +71,7 @@ $ann_to_talk = 1;
$rspfcheck = 1;
$eph_restime = 180;
$eph_info_restime = 60*60;
$eph_pc15_restime = 6*60;
$eph_pc34_restime = 30;
$pingint = 5*60;
$obscount = 2;
@ -699,6 +701,23 @@ sub handle_12
$self->route($_[2], $line);
}
}
sub handle_15
{
my $self = shift;
my $pcno = shift;
my $line = shift;
my $origin = shift;
if (eph_dup($line, $eph_pc15_restime)) {
dbg("PCPROT: Ephemeral dup, dropped") if isdbg('chanerr');
} else {
unless ($self->{isolate}) {
DXChannel::broadcast_nodes($line, $self) if $line =~ /\^H\d+\^?~?$/; # send it to everyone but me
}
}
}
# incoming user
sub handle_16