Revert "add first take on IP address remembering"
[spider.git] / perl / DXProtHandle.pm
index 0f7a1ff381c08c409a9c98eec162ca1908076ceb..19d4a31c1888853bc12c7ff0d0410ec3a25c1850 100644 (file)
@@ -224,10 +224,12 @@ sub handle_11
        # add it
        Spot::add(@spot);
 
+       my $ip = $spot[14] if exists $spot[14];
        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]);
+               my $sip = $ip ? sprintf "($ip)" : '' unless $ip =~ m|[\(\)\*]|;
+               my $d = cldatetime($spot[2]);
+               $d =~ /^s+//;
+               my $s = "SPOT: $spot[1] on $spot[0] \@ $d by $spot[4]$sip\@$spot[7]";
                $s .= " '$spot[3]'" if $spot[3];
                dbg($s);
        }
@@ -2016,7 +2018,7 @@ sub handle_93
 
        if (isdbg('progress')) {
                my $vs = $via ne '*' ? " via $via" : ''; 
-               my $s = "ANNTALK: $from\@$onode$via -> $to '$text'";
+               my $s = "ANNTALK: $from\@$onode$vs -> $to '$text'";
                dbg($s);
        }