Hello, Uri,
> has anyone gotten IO::Socket::SSL to work under event.pm?
yes, we're running server and clients on base of this combination for years.
Here is the clients (simplified) init sequence:
# make the underlaying Net::SSLeay module quiet
$Net::SSLeay::trace=0;
# load the SSL module
require IO::Socket::SSL;
# and switch to a client context
IO::Socket::SSL::context_init({SSL_verify_mode=>0x00, SSL_use_cert=>0});
# connect
$socket=new IO::Socket::SSL("$host:$port") or die "...\n";
Subsequent communication is done via IPC::LDT.
Jochen