X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXProtHandle.pm;h=d1023270291a4be2209741b4d5197c9f63b4974f;hb=0ece4187fe1d9f4547cb262d91af55f17bea200c;hp=d4ce6bf6e4563b4512ed52f2073cae9d2ddc28ac;hpb=9fae81e04f84e36568739fdb279a134c0ab6cfa1;p=spider.git diff --git a/perl/DXProtHandle.pm b/perl/DXProtHandle.pm index d4ce6bf6..d1023270 100644 --- a/perl/DXProtHandle.pm +++ b/perl/DXProtHandle.pm @@ -158,17 +158,21 @@ sub handle_11 # if this is a 'nodx' node then ignore it if ($badnode->in($pc->[7])) { - dbg("PCPROT: Bad Node, dropped") if isdbg('chanerr'); + dbg("PCPROT: Bad Node $pc->[7], dropped") if isdbg('chanerr'); return; } - # if this is a 'bad spotter' user then ignore it + # if this is a 'bad spotter' or an unknown user then ignore it. BUT if it's got an IP address then allow it through my $nossid = $pc->[6]; $nossid =~ s/-\d+$//; if ($badspotter->in($nossid)) { - dbg("PCPROT: Bad Spotter, dropped") if isdbg('chanerr'); + dbg("PCPROT: Bad Spotter $pc->[6], dropped") if isdbg('chanerr'); return; } +# unless (is_ipaddr($pc->[8]) || DXUser::get_current($pc->[6])) { +# dbg("PCPROT: Unknown Spotter $pc->[6], dropped") if isdbg('chanerr'); +# return; +# } # convert the date to a unix date my $d = cltounix($pc->[3], $pc->[4]); @@ -220,6 +224,14 @@ sub handle_11 # add it Spot::add(@spot); + if (isdbg('progress')) { + my $ip = ''; + $ip = sprintf "($spot[14])" if $spot[14]; + my $s = sprintf "SPOT: $spot[1] on $spot[0] \@ %s by $spot[4]$ip\@$spot[7]", cldatetime($spot[2]); + $s .= " '$spot[3]'" if $spot[3]; + dbg($s); + } + # # @spot at this point contains:- # freq, spotted call, time, text, spotter, spotted cc, spotters cc, orig node @@ -2000,6 +2012,12 @@ sub handle_93 return; } + if (isdbg('progress')) { + my $vs = $via ne '*' ? " via $via" : ''; + my $s = "ANNTALK: $from\@$onode$via -> $to '$text'"; + dbg($s); + } + # will we allow it at all? if ($censorpc) { my @bad;