20Aug02=======================================================================
1. fix lines containing just the character '0' in messages (and console.pl)
(K1XX).
+2. remove all newline characters from AGW data, thus treating it like a
+'normal' ax25 connection where the 'newline' convention is just carriage
+return (K1XX)
06Aug02=======================================================================
1. added 5.5Mhz band as '60m'.
29Jul02=======================================================================
$data = '' unless defined $data;
if ($sort eq 'D') {
my $d = unpack "Z*", $data;
+ $d =~ s/\cJ//g; # remove all new line characters
$d =~ s/\cM$//;
dbg("AGW Data In port: $port pid: $pid '$from'->'$to' length: $len \"$d\"") if isdbg('agw');
my $conn = _find($from eq $main::mycall ? $to : $from);
}
} elsif ($sort eq 'I' || $sort eq 'S' || $sort eq 'U' || $sort eq 'M' || $sort eq 'T') {
my $d = unpack "Z*", $data;
+ $d =~ s/\cJ//g; # remove all new line characters
$d =~ s/\cM$//;
my @lines = split /\cM/, $d;