diff --git a/Changes b/Changes index 420c0ea..bd260e3 100644 --- a/Changes +++ b/Changes @@ -3,8 +3,12 @@ * 0.15 Added "examples/serverclient.pl" to track down same-process sslification problems, thanks LotR! + Applied patch from BinGOs to support passing custom $ctx for Server_SSLify, thanks! RT#43018 - Switched over to Test::Apocalypse for easy AUTHOR tests + + Switched over to Test::Apocalypse for easy author tests + + Added experimental NONBLOCKING code, thanks ASCENT for the motivation! * 0.14 diff --git a/POE-Component-SSLify-0.15.tar.gz b/POE-Component-SSLify-0.15.tar.gz index f538e6b..f99a301 100644 Binary files a/POE-Component-SSLify-0.15.tar.gz and b/POE-Component-SSLify-0.15.tar.gz differ diff --git a/examples/client.pl b/examples/client.pl index ddceed4..f426d50 100755 --- a/examples/client.pl +++ b/examples/client.pl @@ -1,5 +1,8 @@ #!/usr/bin/perl use strict; use warnings; + +# to use experimental nonblocking, uncomment this line +#sub POE::Component::SSLify::NONBLOCKING { 1 } use POE; use POE::Component::SSLify qw( Client_SSLify ); diff --git a/examples/server.pl b/examples/server.pl index f0c5416..60e5053 100755 --- a/examples/server.pl +++ b/examples/server.pl @@ -1,5 +1,8 @@ #!/usr/bin/perl use strict; use warnings; + +# to use experimental nonblocking, uncomment this line +#sub POE::Component::SSLify::NONBLOCKING { 1 } use POE; use Socket qw( inet_ntoa unpack_sockaddr_in ); diff --git a/examples/serverclient.pl b/examples/serverclient.pl index a691ac5..cffc014 100755 --- a/examples/serverclient.pl +++ b/examples/serverclient.pl @@ -1,5 +1,8 @@ #!/usr/bin/perl use strict; use warnings; + +# to use experimental nonblocking, uncomment this line +#sub POE::Component::SSLify::NONBLOCKING { 1 } use POE; use Socket qw( inet_ntoa unpack_sockaddr_in );