mirror of https://github.com/adamdruppe/arsd.git
wrong spot for default ssl!
This commit is contained in:
parent
1d5a3d4811
commit
8616028534
11
http2.d
11
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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue