diff options
| author | Pieter Wuille <[email protected]> | 2016-04-21 13:46:36 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-04-21 13:48:13 +0200 |
| commit | 7daa3adb242d9c8728fdb15c6af6596aaad5502f (patch) | |
| tree | c8ab96faa549fd7ce0033de2bf2b8e4a4e7d5b70 /src/torcontrol.cpp | |
| parent | Merge #7787: [Moveonly] Create ui_interface.cpp (diff) | |
| parent | net: disable resolving from storage structures (diff) | |
| download | discoin-7daa3adb242d9c8728fdb15c6af6596aaad5502f.tar.xz discoin-7daa3adb242d9c8728fdb15c6af6596aaad5502f.zip | |
Merge #7868: net: Split DNS resolving functionality out of net structures
d39f5b4 net: disable resolving from storage structures (Cory Fields)
3675699 net: resolve outside of storage structures (Cory Fields)
a98cd1f net: manually resolve dns seed sources (Cory Fields)
e9fc71e net: require lookup functions to specify all arguments (Cory Fields)
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 1c7bc2dbe..47d834c7b 100644 --- a/src/torcontrol.cpp +++ b/src/torcontrol.cpp @@ -438,7 +438,7 @@ void TorController::add_onion_cb(TorControlConnection& conn, const TorControlRep private_key = i->second; } - service = CService(service_id+".onion", GetListenPort(), false); + service = CService(service_id+".onion", GetListenPort()); LogPrintf("tor: Got service ID %s, advertising service %s\n", service_id, service.ToString()); if (WriteBinaryFile(GetPrivateKeyFile(), private_key)) { LogPrint("tor", "tor: Cached service private key to %s\n", GetPrivateKeyFile()); |