diff options
| author | Matt Corallo <[email protected]> | 2012-07-01 04:17:26 +0200 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2012-07-01 04:17:26 +0200 |
| commit | 6d6c2afb2b014ecaf43fea2690f6021f78f57488 (patch) | |
| tree | 30f65a9ee3956e0c0a73ce75ef9f98faa516b946 /src/init.cpp | |
| parent | Remove useless high-volume printf (fixes #1544). (diff) | |
| download | discoin-6d6c2afb2b014ecaf43fea2690f6021f78f57488.tar.xz discoin-6d6c2afb2b014ecaf43fea2690f6021f78f57488.zip | |
Change default send buffer to 1Mb.
Diffstat (limited to 'src/init.cpp')
| -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 b25d52200..5c87af911 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -239,7 +239,7 @@ std::string HelpMessage() " -banscore=<n> " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" + " -bantime=<n> " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" + " -maxreceivebuffer=<n> " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)") + "\n" + - " -maxsendbuffer=<n> " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 5000)") + "\n" + + " -maxsendbuffer=<n> " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)") + "\n" + #ifdef USE_UPNP #if USE_UPNP " -upnp " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n" + |