aboutsummaryrefslogtreecommitdiff
path: root/init.cpp
diff options
context:
space:
mode:
authorWitchspace <witchspace81@gmail.com>2010-12-22 14:08:00 +0100
committerWitchspace <witchspace81@gmail.com>2010-12-22 14:08:00 +0100
commit5f88e8887a31db68493334fc8e5652c5dd9cbf89 (patch)
treecc723c7d3424b54e06a7f50d96cd7af417e97d65 /init.cpp
parent2d96276e243c93add0b0d292ae9f05a54508b6e7 (diff)
downloadbitcoin-5f88e8887a31db68493334fc8e5652c5dd9cbf89.tar.xz
add -nolisten command line option
Diffstat (limited to 'init.cpp')
-rw-r--r--init.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/init.cpp b/init.cpp
index 61ca4d2bd5..cfb5d8e330 100644
--- a/init.cpp
+++ b/init.cpp
@@ -181,7 +181,8 @@ bool AppInit2(int argc, char* argv[])
" -rpcpassword=<pw>\t " + _("Password for JSON-RPC connections\n") +
" -rpcport=<port> \t\t " + _("Listen for JSON-RPC connections on <port>\n") +
" -rpcallowip=<ip> \t\t " + _("Allow JSON-RPC connections from specified IP address\n") +
- " -rpcconnect=<ip> \t " + _("Send commands to node running on <ip>\n");
+ " -rpcconnect=<ip> \t " + _("Send commands to node running on <ip>\n") +
+ " -nolisten \t " + _("Don't accept connections from outside");
#ifdef USE_SSL
strUsage += string() +
@@ -211,6 +212,8 @@ bool AppInit2(int argc, char* argv[])
fPrintToDebugger = GetBoolArg("-printtodebugger");
fTestNet = GetBoolArg("-testnet");
+
+ fNoListen = GetBoolArg("-nolisten");
if (fCommandLine)
{
@@ -290,10 +293,13 @@ bool AppInit2(int argc, char* argv[])
// Bind to the port early so we can tell if another instance is already running.
string strErrors;
- if (!BindListenPort(strErrors))
+ if (!fNoListen)
{
- wxMessageBox(strErrors, "Bitcoin");
- return false;
+ if (!BindListenPort(strErrors))
+ {
+ wxMessageBox(strErrors, "Bitcoin");
+ return false;
+ }
}
//