diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-09-02 06:19:10 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-09-02 06:19:10 -0700 |
commit | 4d0c2b6cf4e0d3ece4e785af442e8d5538770048 (patch) | |
tree | dec6353e09c60f1a28c0d40033fe08a3aeab7922 /src | |
parent | 0e1be81a4ad059ee4d5a81b616a51a07fd3b5720 (diff) | |
parent | d93e5986d70e36481d9bea4e267df4cf1e38edf9 (diff) |
Merge pull request #1761 from Diapolo/timeout_desc
add default value in -timeout description
Diffstat (limited to 'src')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 25756c4e6f..b085a23d60 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -225,7 +225,7 @@ std::string HelpMessage() " -datadir=<dir> " + _("Specify data directory") + "\n" + " -dbcache=<n> " + _("Set database cache size in megabytes (default: 25)") + "\n" + " -dblogsize=<n> " + _("Set database disk log size in megabytes (default: 100)") + "\n" + - " -timeout=<n> " + _("Specify connection timeout (in milliseconds)") + "\n" + + " -timeout=<n> " + _("Specify connection timeout in milliseconds (default: 5000))") + "\n" + " -proxy=<ip:port> " + _("Connect through socks proxy") + "\n" + " -socks=<n> " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" + " -tor=<ip:port> " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n" |