1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
This commit is contained in:
Stephen Shelton 2020-05-01 10:23:11 -06:00 committed by Jeff Becker
parent 960dc37c1f
commit 15918ff1c9
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05
2 changed files with 0 additions and 6 deletions

View file

@ -224,7 +224,6 @@ namespace llarp
{
if (multiValued)
{
std::cout << name << " has " << parsedValues.size() << " parsedValues" << std::endl;
for (const auto& value : parsedValues)
{
acceptor(value);
@ -232,7 +231,6 @@ namespace llarp
}
else
{
std::cout << name << " is NOT multi-valued" << std::endl;
auto maybe = getValue();
if (maybe.has_value())
{

View file

@ -255,8 +255,6 @@ namespace llarp
if (ifname.empty())
ifname = FindFreeTun();
LogWarn("ifname @ TunEndpoint: ", ifname);
if (tunif)
{
if (ifname.length() >= sizeof(tunif->ifname))
@ -272,8 +270,6 @@ namespace llarp
if (ifaddr.empty())
ifaddr = FindFreeRange();
LogWarn("ifaddr @ TunEndpoint: ", ifaddr);
if (tunif)
{
std::string addr;