From 8616028534f7fa8e39d7fd044cd5984043b95ab2 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 23 Oct 2017 10:48:25 -0400 Subject: [PATCH] wrong spot for default ssl! --- http2.d | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/http2.d b/http2.d index 71fff6f..b072566 100644 --- a/http2.d +++ b/http2.d @@ -14,6 +14,12 @@ +/ module arsd.http2; +version(without_openssl) {} +else +version=use_openssl; + + + /++ Demonstrates core functionality, using the [HttpClient], [HttpRequest] (returned by [HttpClient.navigateTo|client.navigateTo]), @@ -1240,11 +1246,6 @@ void main() { // From sslsocket.d - -version(without_openssl) {} -else -version=use_openssl; - version(use_openssl) { alias SslClientSocket = OpenSslSocket;