[svn-upgrade] Integrating new upstream version, libpoe-component-sslify-perl (0.09)
Kees Cook
15 years ago
0 | 0 |
Revision history for Perl extension POE::Component::SSLify.
|
|
1 |
|
|
2 |
* 0.09
|
|
3 |
|
|
4 |
Minor tweak of POD to enable better distro building - thanks RT #31238
|
1 | 5 |
|
2 | 6 |
* 0.08
|
3 | 7 |
|
0 | 0 |
--- #YAML:1.0
|
1 | 1 |
name: POE-Component-SSLify
|
2 | |
version: 0.08
|
|
2 |
version: 0.09
|
3 | 3 |
abstract: Makes using SSL in the world of POE easy!
|
4 | 4 |
license: perl
|
5 | 5 |
generated_by: ExtUtils::MakeMaker version 6.31
|
5 | 5 |
use warnings FATAL => 'all'; # Enable warnings to catch errors
|
6 | 6 |
|
7 | 7 |
# Initialize our version
|
8 | |
# $Revision: 1168 $
|
|
8 |
# $Revision: 1223 $
|
9 | 9 |
use vars qw( $VERSION );
|
10 | |
$VERSION = '0.02';
|
|
10 |
$VERSION = '0.03';
|
11 | 11 |
|
12 | 12 |
# Import the SSL death routines
|
13 | 13 |
use Net::SSLeay qw( die_now die_if_ssl_error );
|
|
59 | 59 |
__END__
|
60 | 60 |
=head1 NAME
|
61 | 61 |
|
62 | |
POE::Component::SSLify::ClientHandle
|
|
62 |
POE::Component::SSLify::ClientHandle - client object for POE::Component::SSLify
|
63 | 63 |
|
64 | 64 |
=head1 ABSTRACT
|
65 | 65 |
|
5 | 5 |
use warnings FATAL => 'all'; # Enable warnings to catch errors
|
6 | 6 |
|
7 | 7 |
# Initialize our version
|
8 | |
# $Revision: 1168 $
|
|
8 |
# $Revision: 1223 $
|
9 | 9 |
use vars qw( $VERSION );
|
10 | |
$VERSION = '0.03';
|
|
10 |
$VERSION = '0.04';
|
11 | 11 |
|
12 | 12 |
# Import the SSL death routines
|
13 | 13 |
use Net::SSLeay qw( die_now die_if_ssl_error );
|
|
162 | 162 |
__END__
|
163 | 163 |
=head1 NAME
|
164 | 164 |
|
165 | |
POE::Component::SSLify::ServerHandle
|
|
165 |
POE::Component::SSLify::ServerHandle - server object for POE::Component::SSLify
|
166 | 166 |
|
167 | 167 |
=head1 ABSTRACT
|
168 | 168 |
|
5 | 5 |
use warnings FATAL => 'all'; # Enable warnings to catch errors
|
6 | 6 |
|
7 | 7 |
# Initialize our version
|
8 | |
# $Revision: 1213 $
|
9 | |
our $VERSION = '0.08';
|
|
8 |
# $Revision: 1223 $
|
|
9 |
our $VERSION = '0.09';
|
10 | 10 |
|
11 | 11 |
# We need Net::SSLeay or all's a failure!
|
12 | 12 |
BEGIN {
|