From 4d269e9f7df8b39653d2632bc1f462057a372884 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 28 Sep 2021 16:33:02 -0400 Subject: [PATCH] omg broken --- http2.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/http2.d b/http2.d index 317ffe0..95e03cd 100644 --- a/http2.d +++ b/http2.d @@ -2646,9 +2646,10 @@ version(use_openssl) { extern(C) void SSL_CTX_keylog_cb_func(SSL_CTX* ctx, void function(SSL*, char*) func) { + // this isn't in openssl 1.0 and is non-essential, so it is allowed to fail. if(ossllib.SSL_CTX_set_keylog_callback) ossllib.SSL_CTX_set_keylog_callback(ctx, func); - else throw new Exception("SSL_CTX_keylog_cb_func not loaded"); + //else throw new Exception("SSL_CTX_keylog_cb_func not loaded"); }