From 0d61b0ef04813d62fe2adadbb93c8cbee2f85d35 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 10 Aug 2022 09:09:41 -0400 Subject: [PATCH] lol ssl block just to finalize connecting --- http2.d | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/http2.d b/http2.d index 162bcab..98a05ec 100644 --- a/http2.d +++ b/http2.d @@ -1360,6 +1360,7 @@ class HttpRequest { version(with_openssl) { loadOpenSsl(); socket = new SslClientSocket(family(unixSocketPath), SocketType.STREAM, host, verifyPeer); + socket.blocking = false; } else throw new Exception("SSL not compiled in"); } else { @@ -1763,7 +1764,10 @@ class HttpRequest { if(auto s = cast(SslClientSocket) sock) { try { + // maybe not ideal to set the blocking but meh it simplifies the code + s.blocking = true; s.do_ssl_connect(); + s.blocking = false; } catch(Exception e) { request.state = State.aborted; @@ -3693,8 +3697,9 @@ version(use_openssl) { @trusted override void connect(Address to) { super.connect(to); - if(!blocking) + if(blocking) { do_ssl_connect(); + } } @trusted