Allow -onlynet=onion to be used

Just an alias for onlynet=tor, but matches the new name
of the proxy option -onion= better.
This commit is contained in:
Wladimir J. van der Laan
2014-07-30 15:27:03 +02:00
parent 1de2992e07
commit 60dc8e4208
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ enum Network ParseNetwork(std::string net) {
boost::to_lower(net);
if (net == "ipv4") return NET_IPV4;
if (net == "ipv6") return NET_IPV6;
if (net == "tor") return NET_TOR;
if (net == "tor" || net == "onion") return NET_TOR;
return NET_UNROUTABLE;
}