22Mar01=======================================================================
1. edit the helpfile for set/debug and add help for show/debug
+2. Allow ^Z again on messages
19Mar01=======================================================================
1. Add 'not allowed' messages into sh/filter with callsign and reduce priv
2. decode %xx characters in winclient.pl
use DXDebug;
use IO::File;
use IO::Socket;
-use IPC::Open2;
+use IPC::Open3;
use vars qw(@ISA $deftimeout);
dbg('connect', $msg) unless $conn->{state} eq 'C';
$msg =~ s/\xff\xfa.*\xff\xf0|\xff[\xf0-\xfe].//g; # remove telnet options
- $msg =~ s/[\x00-\x08\x0a-\x1f\x80-\x9f]/./g; # immutable CSI sequence + control characters
+ $msg =~ s/[\x00-\x08\x0a-\x19\x1b-\x1f\x80-\x9f]/./g; # immutable CSI sequence + control characters
if ($conn->{state} eq 'C') {
&{$conn->{rproc}}($conn, "I$conn->{call}|$msg");
dbg('connect', "***Connect Failed to $host $port $!");
}
} elsif ($sort eq 'ax25' || $sort eq 'prog') {
- $conn->{sock} = new IO::File;
- if ($conn->{sock}) {
- my $outfd = fileno($conn->{sock});
- my $out = new IO::File ">&$outfd";
- if ($conn->{pid} = open2($conn->{sock}, $out, $line)) {
- $conn->{csort} = $sort;
- $conn->{lineend} = "\cM" if $sort eq 'ax25';
- dbg('connect', "started $line");
- } else {
- dbg('connect', "can't start $line $!");
- }
+ my $sock = new IO::Socket::INET;
+ local *H;
+ my $wrt = \*H;
+
+ if ($conn->{pid} = open3("<&$sock", ">&$sock", '', $line)) {
+ $conn->{sock} = $sock;
+ $conn->{csort} = $sort;
+ $conn->{lineend} = "\cM" if $sort eq 'ax25';
+ dbg('connect', "started pid: $conn->{pid} as $line");
} else {
dbg('connect', "can't start $line $!");
}
1; # Success
}
+sub dup_sock
+{
+ my $conn = shift;
+ my $oldsock = $conn->{sock};
+ my $rc = $rd_callbacks{$oldsock};
+ my $wc = $wt_callbacks{$oldsock};
+ my $ec = $er_callbacks{$oldsock};
+ my $sock = $oldsock->new_from_fd($oldsock, "w+");
+ if ($sock) {
+ set_event_handler($oldsock, read=>undef, write=>undef, error=>undef);
+ $conn->{sock} = $sock;
+ set_event_handler($sock, read=>$rc, write=>$wc, error=>$ec);
+ $oldsock->close;
+ }
+}
+
sub _err_will_block {
return 0 unless $blocking_supported;
return ($_[0] == $eagain || $_[0] == $ewouldblock || $_[0] == $einprogress);