in reply to IO::Socket:SSL and Net::Server STDOUT redirection
Hi Zucan,
just a hint to be sure that the problem is Per related and not SSL related: have you tried the openssl s_client command to interact with your server snippet. This tool can also be interactively used and logs many informations concerning the SSL protocol.
UPDATE: Yes, openssl helped me to get an idea. Change the following line
open(STDOUT, ">&$cf") || die "Couldn't dup client to stdout";
into
open(STDOUT, ">&=", $client) || die "Couldn't dup client to stdout";
I got it to work this way.
Hope it helps
McA
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: IO::Socket:SSL and Net::Server STDOUT redirection
by Zucan (Beadle) on Nov 17, 2014 at 19:41 UTC | |
by McA (Priest) on Nov 17, 2014 at 19:59 UTC | |
by Zucan (Beadle) on Nov 17, 2014 at 21:23 UTC |