Skip to content

Commit

Permalink
Merge pull request #164 from zorael/master
Browse files Browse the repository at this point in the history
Load OpenSSL 3.x dlls in Windows
  • Loading branch information
ikod authored Jan 25, 2024
2 parents b09d5fd + 44fd0cb commit 43dbb36
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions source/requests/ssl_adapter.d
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,15 @@ shared static this() {
"libssl32.dll"w,
"libssl-1_1"w,
"libssl-1_1-x64"w,
"libssl-3"w,
"libssl-3-x64"w,
];
immutable wstring[] libcryptoname = [
"libeay32.dll"w,
"libcrypto-1_1"w,
"libcrypto-1_1-x64"w,
"libcrypto-3"w,
"libcrypto-3-x64"w,
];
} else {
debug(requests) trace("error loading openssl: unsupported system - first access over https will fail");
Expand Down

0 comments on commit 43dbb36

Please sign in to comment.