throttle fix

This commit is contained in:
zzz
2010-05-10 16:21:20 +00:00
parent dc91580e30
commit d6c8e64575
3 changed files with 20 additions and 2 deletions

View File

@ -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; }

View File

@ -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!

View File

@ -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 = "";