r70308 - in /branches/upstream/libio-socket-ssl-perl/current: Changes META.yml SSL.pm
angelabad-guest at users.alioth.debian.org
angelabad-guest at users.alioth.debian.org
Thu Mar 3 16:48:06 UTC 2011
Author: angelabad-guest
Date: Thu Mar 3 16:47:00 2011
New Revision: 70308
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70308
Log:
[svn-upgrade] new version libio-socket-ssl-perl (1.39)
Modified:
branches/upstream/libio-socket-ssl-perl/current/Changes
branches/upstream/libio-socket-ssl-perl/current/META.yml
branches/upstream/libio-socket-ssl-perl/current/SSL.pm
Modified: branches/upstream/libio-socket-ssl-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/Changes?rev=70308&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/Changes (original)
+++ branches/upstream/libio-socket-ssl-perl/current/Changes Thu Mar 3 16:47:00 2011
@@ -1,4 +1,9 @@
+v1.39 2011.03.03
+- fixed documentation of http verification: wildcards in cn is allowed
+v1.38_1 2011.01.24
+- close should undef _SSL_fileno, because the fileno is no longer
+ valid (SSL connection and socket are closed)
v1.38 2011.01.18
- fixed wildcards_in_cn setting for http (wrongly set in 1.34 to 1
instead of anywhere). Thanks to dagolden[AT]cpan[DOT]org for
Modified: branches/upstream/libio-socket-ssl-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/META.yml?rev=70308&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/META.yml (original)
+++ branches/upstream/libio-socket-ssl-perl/current/META.yml Thu Mar 3 16:47:00 2011
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: IO-Socket-SSL
-version: 1.38
+version: 1.39
abstract: Nearly transparent SSL encapsulation for IO::Socket::INET.
author:
- Steffen Ullrich & Peter Behroozi & Marko Asplund
Modified: branches/upstream/libio-socket-ssl-perl/current/SSL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libio-socket-ssl-perl/current/SSL.pm?rev=70308&op=diff
==============================================================================
--- branches/upstream/libio-socket-ssl-perl/current/SSL.pm (original)
+++ branches/upstream/libio-socket-ssl-perl/current/SSL.pm Thu Mar 3 16:47:00 2011
@@ -78,7 +78,7 @@
}) {
@ISA = qw(IO::Socket::INET);
}
- $VERSION = '1.38';
+ $VERSION = '1.39';
$GLOBAL_CONTEXT_ARGS = {};
#Make $DEBUG another name for $Net::SSLeay::trace
@@ -801,6 +801,7 @@
if ( ! $close_args->{_SSL_in_DESTROY} ) {
untie( *$self );
+ undef ${*$self}{_SSL_fileno};
return $self->SUPER::close;
}
return 1;
@@ -1950,8 +1951,8 @@
=item http (rfc2818), alias is www
-Extended wildcards in subjectAltNames are possible, e.g. *.example.org or
-even www*.example.org. Wildcards in the common name are not allowed. The common
+Extended wildcards in subjectAltNames and common name are possible, e.g.
+*.example.org or even www*.example.org. The common
name will be only checked if no names are given in subjectAltNames.
=item smtp (rfc3207)
More information about the Pkg-perl-cvs-commits
mailing list