Change the enableuniquelocal to false by default to improve anonimity

Fixes #1573
This commit is contained in:
qorg11 2020-11-02 15:47:19 +01:00
parent b12fa97a38
commit 9991bea5d9
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -690,7 +690,7 @@ namespace client
i2p::data::CryptoKeyType cryptoType = section.second.get (I2P_CLIENT_TUNNEL_CRYPTO_TYPE, i2p::data::CRYPTO_KEY_TYPE_ELGAMAL);
std::string address = section.second.get<std::string> (I2P_SERVER_TUNNEL_ADDRESS, "127.0.0.1");
bool isUniqueLocal = section.second.get(I2P_SERVER_TUNNEL_ENABLE_UNIQUE_LOCAL, true);
bool isUniqueLocal = section.second.get(I2P_SERVER_TUNNEL_ENABLE_UNIQUE_LOCAL, false);
// I2CP
std::map<std::string, std::string> options;