in reply to Re: Large HTTPS POST hangs with HTTP::Daemon::SSL
in thread Large HTTPS POST hangs with HTTP::Daemon::SSL

I include HTTP::Daemon::SSL like that:
use HTTP::Daemon::SSL;.
But if I wrote:
use HTTP::Daemon;
use HTTP::Daemon::SSL;

that code unfortunately fail.
It happent because code:
BEGIN {
no strict;
*{"HTTP::Daemon::ClientConn::select"} = \&HTTP::Daemon::SSL::select;
}
must execute before use HTTP::Daemon.
  • Comment on Re^2: Large HTTPS POST hangs with HTTP::Daemon::SSL