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:
@ -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.
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user