1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

fix exit range default value

This commit is contained in:
Jeff Becker 2021-02-16 11:25:44 -05:00
parent bd93a8f828
commit 063e982ef6
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -430,7 +430,7 @@ namespace llarp
const auto pos = arg.find(":");
if (pos == std::string::npos)
{
range.FromString("0.0.0.0/0");
range.FromString("::/0");
}
else if (not range.FromString(arg.substr(pos + 1)))
{