diff options
| author | Gavin Andresen <[email protected]> | 2012-04-05 07:34:45 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-04-05 07:34:45 -0700 |
| commit | 895c12943b1845411fb0282c17683c7b29a61459 (patch) | |
| tree | 2caa1690cc54c3f1c80b01248a898f6baa2d8e9b /src/init.cpp | |
| parent | Merge pull request #1037 from gavinandresen/addmultisigenable (diff) | |
| parent | Remove USE_SSL #define (diff) | |
| download | discoin-895c12943b1845411fb0282c17683c7b29a61459.tar.xz discoin-895c12943b1845411fb0282c17683c7b29a61459.zip | |
Merge pull request #1042 from gavinandresen/use_ssl_cleanup
Remove USE_SSL #define
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp index eecbc83ed..05b4e87ce 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -221,14 +221,12 @@ bool AppInit2(int argc, char* argv[]) " -checkblocks=<n> \t\t " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" + " -checklevel=<n> \t\t " + _("How thorough the block verification is (0-6, default: 1)") + "\n"; -#ifdef USE_SSL strUsage += string() + _("\nSSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" + " -rpcssl \t " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" + " -rpcsslcertificatechainfile=<file.cert>\t " + _("Server certificate file (default: server.cert)") + "\n" + " -rpcsslprivatekeyfile=<file.pem> \t " + _("Server private key (default: server.pem)") + "\n" + " -rpcsslciphers=<ciphers> \t " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n"; -#endif strUsage += string() + " -? \t\t " + _("This help message") + "\n"; |