Don't listen if on TOR (resolves #441).

This commit is contained in:
Matt Corallo 2011-08-03 21:02:37 +02:00
parent 918150048a
commit 01a509fa26
1 changed files with 2 additions and 1 deletions

View File

@ -247,7 +247,8 @@ bool AppInit2(int argc, char* argv[])
fPrintToDebugger = GetBoolArg("-printtodebugger");
fTestNet = GetBoolArg("-testnet");
fNoListen = GetBoolArg("-nolisten");
bool fTOR = (fUseProxy && addrProxy.port == htons(9050));
fNoListen = GetBoolArg("-nolisten") || fTOR;
fLogTimestamps = GetBoolArg("-logtimestamps");
for (int i = 1; i < argc; i++)