throttle fix
This commit is contained in:
@ -565,7 +565,7 @@ public class ConnectionOptions extends I2PSocketOptionsImpl {
|
|||||||
public int getMaxConnsPerMinute() { return _maxConnsPerMinute; }
|
public int getMaxConnsPerMinute() { return _maxConnsPerMinute; }
|
||||||
public int getMaxConnsPerHour() { return _maxConnsPerHour; }
|
public int getMaxConnsPerHour() { return _maxConnsPerHour; }
|
||||||
public int getMaxConnsPerDay() { return _maxConnsPerDay; }
|
public int getMaxConnsPerDay() { return _maxConnsPerDay; }
|
||||||
public int getMaxTotalConnsPerMinute() { return _maxConnsPerMinute; }
|
public int getMaxTotalConnsPerMinute() { return _maxTotalConnsPerMinute; }
|
||||||
public int getMaxTotalConnsPerHour() { return _maxTotalConnsPerHour; }
|
public int getMaxTotalConnsPerHour() { return _maxTotalConnsPerHour; }
|
||||||
public int getMaxTotalConnsPerDay() { return _maxTotalConnsPerDay; }
|
public int getMaxTotalConnsPerDay() { return _maxTotalConnsPerDay; }
|
||||||
|
|
||||||
|
18
history.txt
18
history.txt
@ -1,3 +1,21 @@
|
|||||||
|
2010-05-10 zzz
|
||||||
|
* Console:
|
||||||
|
- Summary bar tweaks
|
||||||
|
- Add monthly bw estimate
|
||||||
|
* DataHelper: Deprecate inefficient eq() methods
|
||||||
|
* i2psnark:
|
||||||
|
- Add tunnel config dropdowns
|
||||||
|
- Comment out old proxy stuff
|
||||||
|
* NetDB:
|
||||||
|
- Handle old and duplicate stores more efficiently
|
||||||
|
- Have DataStore put() return success
|
||||||
|
- Move getDistance() to its own class
|
||||||
|
* Router: Add router.forceBandwidthClass advanced config for testing
|
||||||
|
* Streaming: Add support for connection throttling
|
||||||
|
* TunnelPoolManager: Concurrent
|
||||||
|
* UDP: To help limit connections, don't offer to introduce
|
||||||
|
when floodfill
|
||||||
|
|
||||||
2010-05-10 sponge
|
2010-05-10 sponge
|
||||||
* PluginStarter: If there is some delay, there may be a really good reason for it.
|
* PluginStarter: If there is some delay, there may be a really good reason for it.
|
||||||
Loading a class would be one of them!
|
Loading a class would be one of them!
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 4;
|
public final static long BUILD = 5;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user