forked from I2P_Developers/i2p.i2p
increase default bw to 64/32
This commit is contained in:
@ -33,11 +33,11 @@ public class FIFOBandwidthRefiller implements Runnable {
|
||||
public static final String PROP_OUTBOUND_BANDWIDTH_PEAK = "i2np.bandwidth.outboundBurstKBytes";
|
||||
//public static final String PROP_REPLENISH_FREQUENCY = "i2np.bandwidth.replenishFrequencyMs";
|
||||
|
||||
// no longer allow unlimited bandwidth - the user must specify a value, and if they do not, it is 32/16KBps
|
||||
public static final int DEFAULT_INBOUND_BANDWIDTH = 48;
|
||||
public static final int DEFAULT_OUTBOUND_BANDWIDTH = 24;
|
||||
public static final int DEFAULT_INBOUND_BURST_BANDWIDTH = 64;
|
||||
public static final int DEFAULT_OUTBOUND_BURST_BANDWIDTH = 32;
|
||||
// no longer allow unlimited bandwidth - the user must specify a value, else use defaults below (KBps)
|
||||
public static final int DEFAULT_INBOUND_BANDWIDTH = 64;
|
||||
public static final int DEFAULT_OUTBOUND_BANDWIDTH = 32;
|
||||
public static final int DEFAULT_INBOUND_BURST_BANDWIDTH = 80;
|
||||
public static final int DEFAULT_OUTBOUND_BURST_BANDWIDTH = 40;
|
||||
|
||||
public static final int DEFAULT_BURST_SECONDS = 60;
|
||||
|
||||
|
Reference in New Issue
Block a user