work around phobos bug

This commit is contained in:
Adam D. Ruppe 2022-12-06 09:09:29 -05:00
parent f7e1a4e062
commit 293f9ce2a8
1 changed files with 1 additions and 0 deletions

View File

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