diff options
| author | Luke Dashjr <[email protected]> | 2015-06-27 19:21:41 +0000 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2015-11-28 18:47:29 +0100 |
| commit | b966aa836a3bc5bfa1314248258308f0026d41bb (patch) | |
| tree | 479a641f12deef9df483b368876cbd8ede3da5e5 /src/netbase.cpp | |
| parent | Merge pull request #6942 (diff) | |
| download | discoin-b966aa836a3bc5bfa1314248258308f0026d41bb.tar.xz discoin-b966aa836a3bc5bfa1314248258308f0026d41bb.zip | |
Constrain constant values to a single location in code
Diffstat (limited to 'src/netbase.cpp')
| -rw-r--r-- | src/netbase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index 83cedfb62..fa6598c1e 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -40,7 +40,7 @@ static proxyType proxyInfo[NET_MAX]; static proxyType nameProxy; static CCriticalSection cs_proxyInfos; int nConnectTimeout = DEFAULT_CONNECT_TIMEOUT; -bool fNameLookup = false; +bool fNameLookup = true; static const unsigned char pchIPv4[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff }; |