Merge pull request #5 from freicoin/fix-segfault-on-missing-tor
Don't setup TOR proxy unless TOR proxy address is specified on the comma...
This commit is contained in:
commit
5bf150c5d9
1 changed files with 6 additions and 4 deletions
2
main.cpp
2
main.cpp
|
@ -349,11 +349,13 @@ int main(int argc, char **argv) {
|
|||
setbuf(stdout, NULL);
|
||||
CDnsSeedOpts opts;
|
||||
opts.ParseCommandLine(argc, argv);
|
||||
if (opts.tor) {
|
||||
CService service(opts.tor, 9050);
|
||||
if (service.IsValid()) {
|
||||
printf("Using Tor proxy at %s\n", service.ToStringIPPort().c_str());
|
||||
SetProxy(NET_TOR, service);
|
||||
}
|
||||
}
|
||||
bool fDNS = true;
|
||||
if (!opts.ns) {
|
||||
printf("No nameserver set. Not starting DNS server.\n");
|
||||
|
|
Loading…
Add table
Reference in a new issue