Skip to content

Commit

Permalink
2009-04-17 sponge
Browse files Browse the repository at this point in the history
    * fixed setIP, just be sure to distclean before building :-)
    * more lint taken care of as well.
  • Loading branch information
sponge committed Apr 17, 2009
1 parent c3f9e20 commit e6cecab
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion router/java/src/net/i2p/router/RouterVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public void markWasUnreachable(Hash peer, boolean yes) {
_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);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e6cecab

Please sign in to comment.