2009-04-17 sponge

* fixed setIP, just be sure to distclean before building :-)
    * more lint taken care of as well.
This commit is contained in:
sponge
2009-04-17 13:45:47 +00:00
parent c3f9e20247
commit e6cecab0b6
4 changed files with 11 additions and 7 deletions

View File

@ -1,3 +1,7 @@
2009-04-17 sponge
* fixed setIP, just be sure to distclean before building :-)
* more lint taken care of as well.
2009-04-17 sponge
* setIP wants to be a static method in the class, but it produces
warnings about it being static from other code.

View File

@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
public class RouterVersion {
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 20;
public final static long BUILD = 21;
public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);

View File

@ -505,7 +505,7 @@ public abstract class TransportImpl implements Transport {
_log.warn(this.getStyle() + " setting wasUnreachable to " + yes + " for " + peer);
}
public static void setIP(Hash peer, byte[] ip) {
public /* static */ void setIP(Hash peer, byte[] ip) {
_IPMap.put(peer, ip);
}

View File

@ -37,15 +37,15 @@ public class EstablishmentManager {
private UDPTransport _transport;
private PacketBuilder _builder;
/** map of RemoteHostId to InboundEstablishState */
private Map _inboundStates;
private final Map _inboundStates;
/** map of RemoteHostId to OutboundEstablishState */
private Map _outboundStates;
private final Map _outboundStates;
/** map of RemoteHostId to List of OutNetMessage for messages exceeding capacity */
private Map _queuedOutbound;
private final Map _queuedOutbound;
/** map of nonce (Long) to OutboundEstablishState */
private Map _liveIntroductions;
private final Map _liveIntroductions;
private boolean _alive;
private Object _activityLock;
private final Object _activityLock;
private int _activity;
private static final int DEFAULT_MAX_CONCURRENT_ESTABLISH = 10;