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); }