forked from I2P_Developers/i2p.i2p
* TunnelDispatcher: Fix bug in -13 preventing participating
tunnels from being expired and causing high CPU usage
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2011-09-09 zzz
|
||||
* TunnelDispatcher: Fix bug in -13 preventing participating
|
||||
tunnels from being expired and causing high CPU usage
|
||||
|
||||
2011-09-08 zzz
|
||||
* Blocklist: Include IP in shitlist reason
|
||||
* Ministreaming: Drop old classes replaced by streaming
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 14;
|
||||
public final static long BUILD = 15;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
@ -792,8 +792,9 @@ public class TunnelDispatcher implements Service {
|
||||
if (exp < now) {
|
||||
_configs.poll();
|
||||
remove(cur);
|
||||
} else if (exp < nextTime) {
|
||||
nextTime = exp;
|
||||
} else {
|
||||
if (exp < nextTime)
|
||||
nextTime = exp;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user