2005-12-14 jrandom

* Fix to drop peer references when we shitlist people again (thanks zzz!)
    * Further I2PSnark fixes to deal with arbitrary torrent info attributes
      (thanks Complication!)
This commit is contained in:
jrandom
2005-12-14 09:32:50 +00:00
committed by zzz
parent 5033a22a9b
commit 369b6930e5
6 changed files with 22 additions and 5 deletions

View File

@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
*
*/
public class RouterVersion {
public final static String ID = "$Revision: 1.309 $ $Date: 2005/12/09 03:05:48 $";
public final static String ID = "$Revision: 1.310 $ $Date: 2005/12/13 16:56:42 $";
public final static String VERSION = "0.6.1.7";
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 + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID);

View File

@ -82,7 +82,7 @@ public class Shitlist {
}
}
//_context.netDb().fail(peer);
_context.netDb().fail(peer);
//_context.tunnelManager().peerFailed(peer);
_context.messageRegistry().peerFailed(peer);
return wasAlready;