From 293f9ce2a83c26551f56ed87e8483fe2b107ba80 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 6 Dec 2022 09:09:29 -0500 Subject: [PATCH] work around phobos bug --- http2.d | 1 + 1 file changed, 1 insertion(+) diff --git a/http2.d b/http2.d index 62c14a4..ae26da1 100644 --- a/http2.d +++ b/http2.d @@ -3969,6 +3969,7 @@ version(use_openssl) { } this(AddressFamily af, SocketType type = SocketType.STREAM, string hostname = null, bool verifyPeer = true) { + version(Windows) __traits(getMember, this, "_blocking") = true; // lol longstanding phobos bug setting this to false on init super(af, type); initSsl(verifyPeer, hostname); }