Skip to content

Commit

Permalink
improved compatibility with IO::Socket::SSL 1.79
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 25, 2012
1 parent 949ece5 commit 95e5709
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
@@ -1,5 +1,6 @@

3.62 2012-11-26
- Improved compatibility with IO::Socket::SSL 1.79.
- Improved tests.
- Fixed clone bugs in Mojo::URL.

Expand Down
3 changes: 2 additions & 1 deletion lib/Mojo/IOLoop/Server.pm
Expand Up @@ -89,7 +89,8 @@ sub listen {
'!aNULL:!eNULL:!EXPORT:!DSS:!DES:!SSLv2:!LOW:RC4-SHA:RC4-MD5:ALL',
SSL_honor_cipher_order => 1,
SSL_key_file => $args->{tls_key} || $KEY,
SSL_startHandshake => 0
SSL_startHandshake => 0,
SSL_verify_mode => 0x00
};
return unless $args->{tls_ca};
$options->{SSL_ca_file} = -T $args->{tls_ca} ? $args->{tls_ca} : undef;
Expand Down

0 comments on commit 95e5709

Please sign in to comment.