From: minima Date: Tue, 20 Aug 2002 18:07:58 +0000 (+0000) Subject: possibly fix AGW connections to remove newline characters X-Git-Tag: R_1_50~7 X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=96d6698d3f043a960ec5ef387747e5b470ac93b3 possibly fix AGW connections to remove newline characters --- diff --git a/Changes b/Changes index 6610c12c..5c07d46c 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ 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======================================================================= diff --git a/perl/AGWMsg.pm b/perl/AGWMsg.pm index 4a36d49a..08660d62 100644 --- a/perl/AGWMsg.pm +++ b/perl/AGWMsg.pm @@ -266,6 +266,7 @@ sub _decode $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); @@ -295,6 +296,7 @@ sub _decode } } 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;