X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=inline;f=perl%2Fcluster.pl;h=9c002766bfdb224c8ed7a00b12577e15cbe19c37;hb=e20501f53ac42e8610371377d022164ae233356a;hp=fdfff04f110abb24807561310a44543b76e96f24;hpb=118cbdbcf7e06d022a3030670c0e70b05bd8c5b3;p=spider.git diff --git a/perl/cluster.pl b/perl/cluster.pl index fdfff04f..9c002766 100755 --- a/perl/cluster.pl +++ b/perl/cluster.pl @@ -233,13 +233,15 @@ sub process_inqueue my $data = $self->{data}; my $dxchan = $self->{dxchan}; my ($sort, $call, $line) = $data =~ /^(\w)([A-Z0-9\-]+)\|(.*)$/; - + my $error; + # the above regexp must work return unless ($sort && $call && $line); # translate any crappy characters into hex characters if ($line =~ /[\x00-\x06\x08\x0a-\x1f\x7f-\xff]/o) { $line =~ s/([\x00-\x1f\x7f-\xff])/uc sprintf("%%%02x",ord($1))/eg; + ++$error; # dbg('chan', "<- $sort $call **CRAP**: $line"); # return; } @@ -253,10 +255,13 @@ sub process_inqueue $dxchan->start($line, $sort); } elsif ($sort eq 'I') { die "\$user not defined for $call" if !defined $user; - - # normal input - $dxchan->normal($line); - + + if ($error) { + dbg(chan, "DROPPED with $error duff characters"); + } else { + # normal input + $dxchan->normal($line); + } disconnect($dxchan) if ($dxchan->{state} eq 'bye'); } elsif ($sort eq 'Z') { disconnect($dxchan);