Update to 2.033
- New upstream release 2.033 - Support for session ticket reuse over multiple contexts and processes (if supported by Net::SSLeay) - Small optimizations, like saving various Net::SSLeay constants into variables and access variables instead of calling the constant sub all the time - Make t/dhe.t work with openssl 1.1.0 - Update patches as needed
This commit is contained in:
parent
ddc83e4abc
commit
5c5f120ac9
@ -1,6 +1,6 @@
|
|||||||
--- lib/IO/Socket/SSL.pm
|
--- lib/IO/Socket/SSL.pm
|
||||||
+++ lib/IO/Socket/SSL.pm
|
+++ lib/IO/Socket/SSL.pm
|
||||||
@@ -85,7 +85,7 @@ my $algo2digest = do {
|
@@ -93,7 +93,7 @@ my $algo2digest = do {
|
||||||
# global defaults
|
# global defaults
|
||||||
my %DEFAULT_SSL_ARGS = (
|
my %DEFAULT_SSL_ARGS = (
|
||||||
SSL_check_crl => 0,
|
SSL_check_crl => 0,
|
||||||
@ -9,9 +9,9 @@
|
|||||||
SSL_verify_callback => undef,
|
SSL_verify_callback => undef,
|
||||||
SSL_verifycn_scheme => undef, # fallback cn verification
|
SSL_verifycn_scheme => undef, # fallback cn verification
|
||||||
SSL_verifycn_publicsuffix => undef, # fallback default list verification
|
SSL_verifycn_publicsuffix => undef, # fallback default list verification
|
||||||
@@ -2186,7 +2186,7 @@ sub new {
|
@@ -2204,7 +2204,7 @@ sub new {
|
||||||
$ssl_op |= &Net::SSLeay::OP_SINGLE_DH_USE;
|
|
||||||
$ssl_op |= &Net::SSLeay::OP_SINGLE_ECDH_USE if $can_ecdh;
|
my $ssl_op = $DEFAULT_SSL_OP;
|
||||||
|
|
||||||
- my $ver;
|
- my $ver;
|
||||||
+ my $ver = '';
|
+ my $ver = '';
|
@ -1,6 +1,6 @@
|
|||||||
--- lib/IO/Socket/SSL.pm
|
--- lib/IO/Socket/SSL.pm
|
||||||
+++ lib/IO/Socket/SSL.pm
|
+++ lib/IO/Socket/SSL.pm
|
||||||
@@ -93,10 +93,10 @@ my %DEFAULT_SSL_ARGS = (
|
@@ -101,10 +101,10 @@ my %DEFAULT_SSL_ARGS = (
|
||||||
SSL_npn_protocols => undef, # meaning depends whether on server or client side
|
SSL_npn_protocols => undef, # meaning depends whether on server or client side
|
||||||
SSL_alpn_protocols => undef, # list of protocols we'll accept/send, for example ['http/1.1','spdy/3.1']
|
SSL_alpn_protocols => undef, # list of protocols we'll accept/send, for example ['http/1.1','spdy/3.1']
|
||||||
|
|
||||||
@ -15,7 +15,7 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
my %DEFAULT_SSL_CLIENT_ARGS = (
|
my %DEFAULT_SSL_CLIENT_ARGS = (
|
||||||
@@ -106,63 +106,6 @@ my %DEFAULT_SSL_CLIENT_ARGS = (
|
@@ -114,63 +114,6 @@ my %DEFAULT_SSL_CLIENT_ARGS = (
|
||||||
SSL_ca_file => undef,
|
SSL_ca_file => undef,
|
||||||
SSL_ca_path => undef,
|
SSL_ca_path => undef,
|
||||||
|
|
@ -1,13 +1,13 @@
|
|||||||
Name: perl-IO-Socket-SSL
|
Name: perl-IO-Socket-SSL
|
||||||
Version: 2.032
|
Version: 2.033
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Perl library for transparent SSL
|
Summary: Perl library for transparent SSL
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
URL: http://search.cpan.org/dist/IO-Socket-SSL/
|
URL: http://search.cpan.org/dist/IO-Socket-SSL/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
|
||||||
Patch0: IO-Socket-SSL-2.026-use-system-default-cipher-list.patch
|
Patch0: IO-Socket-SSL-2.033-use-system-default-cipher-list.patch
|
||||||
Patch1: IO-Socket-SSL-2.031-use-system-default-SSL-version.patch
|
Patch1: IO-Socket-SSL-2.033-use-system-default-SSL-version.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
# Module Build
|
# Module Build
|
||||||
@ -116,6 +116,16 @@ rm -rf %{buildroot}
|
|||||||
%{_mandir}/man3/IO::Socket::SSL::Utils.3*
|
%{_mandir}/man3/IO::Socket::SSL::Utils.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jul 16 2016 Paul Howarth <paul@city-fan.org> - 2.033-1
|
||||||
|
- Update to 2.033
|
||||||
|
- Support for session ticket reuse over multiple contexts and processes (if
|
||||||
|
supported by Net::SSLeay)
|
||||||
|
- Small optimizations, like saving various Net::SSLeay constants into
|
||||||
|
variables and access variables instead of calling the constant sub all the
|
||||||
|
time
|
||||||
|
- Make t/dhe.t work with openssl 1.1.0
|
||||||
|
- Update patches as needed
|
||||||
|
|
||||||
* Tue Jul 12 2016 Paul Howarth <paul@city-fan.org> - 2.032-1
|
* Tue Jul 12 2016 Paul Howarth <paul@city-fan.org> - 2.032-1
|
||||||
- Update to 2.032
|
- Update to 2.032
|
||||||
- Set session id context only on the server side; even if the documentation
|
- Set session id context only on the server side; even if the documentation
|
||||||
|
Loading…
Reference in New Issue
Block a user