diff options
author | fireice-uk <fireice2@o2.pl> | 2017-01-27 22:34:28 +0000 |
---|---|---|
committer | fireice-uk <fireice2@o2.pl> | 2017-02-08 21:20:19 +0000 |
commit | 1a8323ef6f366058803ce6590b8167ec59928872 (patch) | |
tree | e583eb0c7de30a8d21ab8c6417104c8e8e41944d /cli-miner.cpp | |
parent | 426b1991a20520a3afe94da44a8f96ab539553bb (diff) | |
download | xmr-stak-1a8323ef6f366058803ce6590b8167ec59928872.zip xmr-stak-1a8323ef6f366058803ce6590b8167ec59928872.tar.gz |
Inital OpenSSL integration
Diffstat (limited to 'cli-miner.cpp')
-rw-r--r-- | cli-miner.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli-miner.cpp b/cli-miner.cpp index 4a8454a..3e68610 100644 --- a/cli-miner.cpp +++ b/cli-miner.cpp @@ -24,6 +24,8 @@ #include <stdio.h> #include <string.h> +#include <openssl/ssl.h> + //Do a press any key for the windows folk. *insert any key joke here* #ifdef _WIN32 void win_exit() @@ -43,6 +45,9 @@ void do_benchmark(); int main(int argc, char *argv[]) { + SSL_library_init(); + SSL_load_error_strings(); + const char* sFilename = "config.txt"; bool benchmark_mode = false; |