You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2020/02/17 08:34:27 UTC

svn commit: r1874106 - /httpd/test/framework/trunk/t/modules/http2.t

Author: rpluem
Date: Mon Feb 17 08:34:27 2020
New Revision: 1874106

URL: http://svn.apache.org/viewvc?rev=1874106&view=rev
Log:
* If dh is not set AnyEvent 7.14 chooses schmorp1539 by default which seems
  to conflict with my OpenSSL. So set schmorp2048 explicitly which works.
  See also:
  https://blog.kutej.net/2019/09/failed-to-set-DH-parameters

Modified:
    httpd/test/framework/trunk/t/modules/http2.t

Modified: httpd/test/framework/trunk/t/modules/http2.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/http2.t?rev=1874106&r1=1874105&r2=1874106&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/http2.t (original)
+++ httpd/test/framework/trunk/t/modules/http2.t Mon Feb 17 08:34:27 2020
@@ -135,7 +135,7 @@ sub connect_and_do {
                 # ALPN (Net-SSLeay > 1.55, openssl >= 1.0.1)
                 if ( $alpn_available ) {
                     $tls_ctx = AnyEvent::TLS->new( method => "TLSv1_2",
-                        host_name => $host_name );
+                        host_name => $host_name, dh => "schmorp2048" );
                     Net::SSLeay::CTX_set_alpn_protos( $tls_ctx->ctx, ['h2'] );
                 }
                 else {