forked from I2P_Developers/i2p.i2p
i2psnark:
- Consolidate default tunnel length definition - Increase max peers and uploaders per torrent - Increase default max total uploaders - Increase max peers sent and returned in DHT
This commit is contained in:
@@ -120,10 +120,10 @@ class IdleChecker extends SimpleTimer2.TimedEvent {
|
||||
Map<String, String> opts = _util.getI2CPOptions();
|
||||
String i = opts.get("inbound.quantity");
|
||||
if (i == null)
|
||||
i = "3";
|
||||
i = Integer.toString(SnarkManager.DEFAULT_TUNNEL_QUANTITY);
|
||||
String o = opts.get("outbound.quantity");
|
||||
if (o == null)
|
||||
o = "3";
|
||||
o = Integer.toString(SnarkManager.DEFAULT_TUNNEL_QUANTITY);
|
||||
String ib = opts.get("inbound.backupQuantity");
|
||||
if (ib == null)
|
||||
ib = "0";
|
||||
|
||||
Reference in New Issue
Block a user