i2psnark: Reduce minimum bandwidth, reduce max connections if low bandwidth

per user request
This commit is contained in:
zzz
2024-08-09 09:59:57 -04:00
parent 41f678b926
commit eec09d4c9c
2 changed files with 12 additions and 14 deletions

View File

@@ -614,20 +614,18 @@ class PeerCoordinator implements PeerListener, BandwidthListener
if (metainfo == null)
return 6;
int pieces = metainfo.getPieces();
if (pieces <= 10)
return 4;
if (pieces <= 25)
return 10;
if (pieces <= 80)
return 16;
//int size = metainfo.getPieceLength(0);
int max = _util.getMaxConnections();
// Now that we use temp files, no memory concern
//if (size <= 512*1024 || completed())
return max;
//if (size <= 1024*1024)
// return (max + max + 2) / 3;
//return (max + 2) / 3;
if (pieces <= 10) {
if (max > 4) max = 4;
} else if (pieces <= 25) {
if (max > 10) max = 10;
} else if (pieces <= 80) {
if (max > 16) max = 16;
}
long bwl = getDownBWLimit();
if (bwl < 32*1024)
max = Math.min(max, Math.max(6, (int) (I2PSnarkUtil.MAX_CONNECTIONS * bwl / (32*1024))));
return max;
}
public boolean halted() { return halted; }

View File

@@ -170,7 +170,7 @@ public class SnarkManager implements CompleteListener, ClientApp, DisconnectList
/** @since 0.9.58 */
public static final String PROP_MAX_FILES_PER_TORRENT = "i2psnark.maxFilesPerTorrent";
public static final int MIN_UP_BW = 10;
public static final int MIN_UP_BW = 5;
public static final int MIN_DOWN_BW = 2 * MIN_UP_BW;
public static final int DEFAULT_MAX_UP_BW = 25;
private static final int DEFAULT_MAX_DOWN_BW = 200;