Codebase list libpoe-component-sslify-perl / fde823b
bump POE prereq due to CPANTesters FAIL, thanks http://www.cpantesters.org/cpan/report/6978596 Apocalypse 14 years ago
5 changed file(s) with 10 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
3030
3131 'build_requires' => {
3232 # For the t/simple.t test
33 'POE' => 0,
33 'POE' => '1.267',
3434 'POE::Component::Client::TCP' => 0,
3535 'POE::Component::Server::TCP' => 0,
3636 },
00 Revision history for Perl extension POE::Component::SSLify.
1
2 * 0.18
3
4 Bumped POE dep to at least 1.267 for t/simple.t - thanks CPANTesters!
5 Minor typo fixes in POD/Build.PL
16
27 * 0.17
38
22
33 # Initialize our version
44 use vars qw( $VERSION );
5 $VERSION = '0.17';
5 $VERSION = '0.18';
66
77 # Import the SSL death routines
88 use Net::SSLeay qw( die_now die_if_ssl_error );
22
33 # Initialize our version
44 use vars qw( $VERSION );
5 $VERSION = '0.17';
5 $VERSION = '0.18';
66
77 # Import the SSL death routines
88 use Net::SSLeay qw( die_now die_if_ssl_error );
22
33 # Initialize our version
44 use vars qw( $VERSION );
5 $VERSION = '0.17';
5 $VERSION = '0.18';
66
77 # We need Net::SSLeay or all's a failure!
88 BEGIN {
2525 require POE::Component::SSLify::ClientHandle;
2626
2727 # Initialize Net::SSLeay
28 # Taken from http://search.cpan.org/~flora/Net-SSLeay-1.36/lib/Net/SSLeay.pm#Low_level_API
2829 Net::SSLeay::load_error_strings();
2930 Net::SSLeay::SSLeay_add_ssl_algorithms();
3031 Net::SSLeay::randomize();