comparison stream_proxy_protocol_ssl.t @ 1970:6d3a8f4eb9b2

Tests: relaxed SSL version used in testing. This ensures that tests can be properly run with old OpenSSL versions when using recent versions of IO::Socket::SSL (which defaults to TLS 1.2+ starting with IO::Socket:SSL version 2.082, and therefore not compatible with OpenSSL before 1.0.1).
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 06 May 2024 00:03:13 +0300
parents cdcd75657e52
children
comparison
equal deleted inserted replaced
1969:3ba1668cea87 1970:6d3a8f4eb9b2
150 # would fail on waitforsocket 150 # would fail on waitforsocket
151 151
152 eval { 152 eval {
153 IO::Socket::SSL->start_SSL($client, 153 IO::Socket::SSL->start_SSL($client,
154 SSL_server => 1, 154 SSL_server => 1,
155 SSL_version => 'SSLv23',
155 SSL_cert_file => "$d/localhost.crt", 156 SSL_cert_file => "$d/localhost.crt",
156 SSL_key_file => "$d/localhost.key", 157 SSL_key_file => "$d/localhost.key",
157 SSL_error_trap => sub { die $_[1] } 158 SSL_error_trap => sub { die $_[1] }
158 ); 159 );
159 }; 160 };