Browse Source

own local destination for each 'transient'

pull/1583/head
orignal 4 years ago
parent
commit
feaecbe177
  1. 3
      libi2pd_client/ClientContext.cpp

3
libi2pd_client/ClientContext.cpp

@ -590,7 +590,8 @@ namespace client
localDestination = CreateNewMatchedTunnelDestination(k, dest, &options); localDestination = CreateNewMatchedTunnelDestination(k, dest, &options);
else else
localDestination = CreateNewLocalDestination (k, type == I2P_TUNNELS_SECTION_TYPE_UDPCLIENT, &options); localDestination = CreateNewLocalDestination (k, type == I2P_TUNNELS_SECTION_TYPE_UDPCLIENT, &options);
destinations[keys] = localDestination; if (keys != "transient")
destinations[keys] = localDestination;
} }
} }
} }

Loading…
Cancel
Save