2004-12-19 jrandom
* Fix for a race on startup wrt the new stats (thanks susi!)
This commit is contained in:
@ -1,4 +1,7 @@
|
||||
$Id: history.txt,v 1.113 2004/12/19 06:04:57 jrandom Exp $
|
||||
$Id: history.txt,v 1.114 2004/12/19 11:27:10 jrandom Exp $
|
||||
|
||||
2004-12-19 jrandom
|
||||
* Fix for a race on startup wrt the new stats (thanks susi!)
|
||||
|
||||
2004-12-19 jrandom
|
||||
* Added three new stats - router.activePeers, router.fastPeers, and
|
||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.118 $ $Date: 2004/12/19 06:04:57 $";
|
||||
public final static String ID = "$Revision: 1.119 $ $Date: 2004/12/19 11:27:10 $";
|
||||
public final static String VERSION = "0.4.2.4";
|
||||
public final static long BUILD = 3;
|
||||
public final static long BUILD = 4;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
@ -51,7 +51,7 @@ public class CommSystemFacadeImpl extends CommSystemFacade {
|
||||
_manager.restart();
|
||||
}
|
||||
|
||||
public int countActivePeers() { return _manager.countActivePeers(); }
|
||||
public int countActivePeers() { return (_manager == null ? 0 : _manager.countActivePeers()); }
|
||||
|
||||
public List getBids(OutNetMessage msg) {
|
||||
return _manager.getBids(msg);
|
||||
|
Reference in New Issue
Block a user