diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-03-11 08:25:18 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-03-11 08:25:28 +0100 |
| commit | 9f14e5ad918d2f6e94e1d60eab4ef8464202fbdd (patch) | |
| tree | c0a4b44db17fb01369d2ec8100b959ca37a022da /src/torcontrol.cpp | |
| parent | Merge #7592: mempool: Re-remove ERROR logging for mempool rejects (diff) | |
| parent | Remove vfReachable and modify IsReachable to only use vfLimited. (diff) | |
| download | discoin-9f14e5ad918d2f6e94e1d60eab4ef8464202fbdd.tar.xz discoin-9f14e5ad918d2f6e94e1d60eab4ef8464202fbdd.zip | |
Merge #7553: Remove vfReachable and modify IsReachable to only use vfLimited.
110b62f Remove vfReachable and modify IsReachable to only use vfLimited. (Patrick Strateman)
Diffstat (limited to 'src/torcontrol.cpp')
| -rw-r--r-- | src/torcontrol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/torcontrol.cpp b/src/torcontrol.cpp index a04b5c302..f755992a3 100644 --- a/src/torcontrol.cpp +++ b/src/torcontrol.cpp @@ -464,7 +464,7 @@ void TorController::auth_cb(TorControlConnection& conn, const TorControlReply& r if (GetArg("-onion", "") == "") { proxyType addrOnion = proxyType(CService("127.0.0.1", 9050), true); SetProxy(NET_TOR, addrOnion); - SetReachable(NET_TOR); + SetLimited(NET_TOR, false); } // Finally - now create the service |