diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-03-11 08:25:18 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-03-11 08:25:28 +0100 |
commit | 9f14e5ad918d2f6e94e1d60eab4ef8464202fbdd (patch) | |
tree | c0a4b44db17fb01369d2ec8100b959ca37a022da /src/torcontrol.cpp | |
parent | 26a2a7214fe15c55d2af25afaa4552f401a6e1f9 (diff) | |
parent | 110b62f06992d0fb989153afff2dc3aea62a674f (diff) |
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 a04b5c3024..f755992a3e 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 |