-2
This commit is contained in:
30
history.txt
30
history.txt
@ -1,3 +1,33 @@
|
|||||||
|
2008-03-08 zzz
|
||||||
|
* ClientPeerSelector: Implement strict ordering of peers,
|
||||||
|
based on XOR distance from a random hash
|
||||||
|
separately generated for each tunnel pool
|
||||||
|
|
||||||
|
2008-03-07 zzz
|
||||||
|
* Naming: Optimize lookups for a destkey
|
||||||
|
* ProfileOrganizer, TunnelPoolSettings, ClientPeerSelector:
|
||||||
|
- Prevent peers with matching IPs from joining same tunnel.
|
||||||
|
Match 0-4 bytes of IP (0=off, 1=most restrictive, 4=least).
|
||||||
|
Default is 2 (disallow routers in same /16).
|
||||||
|
Set with router.defaultPool.IPRestriction=x
|
||||||
|
- Comment out unused RebuildPeriod pool setting
|
||||||
|
- Add random key to pool in preparation for XOR peer ordering
|
||||||
|
* SusiMail: Add 'Create Account' link
|
||||||
|
* TunnelDispatcher: Change a common wtf error to a warn
|
||||||
|
|
||||||
|
2008-03-05 zzz
|
||||||
|
* Naming: Make HostsTxt the sole default NamingService
|
||||||
|
(was Meta = PetName + HostsTxt)
|
||||||
|
* Naming: Add two new experimental NamingServices, EepGet and Exec,
|
||||||
|
not enabled by default -
|
||||||
|
see source comments in core/java/src/net/i2p/client/naming
|
||||||
|
for configuration instructions
|
||||||
|
* i2psnark: Don't do a naming lookup for Base64 destkeys
|
||||||
|
* i2psnark: Add a StartAll button
|
||||||
|
* Stats: Add code to disable most stats to save memory.
|
||||||
|
Set on configstats.jsp or set stat.full=false to disable the stats.
|
||||||
|
(true by default for now)
|
||||||
|
|
||||||
2008-03-09 Complication
|
2008-03-09 Complication
|
||||||
* Give the Jetty build file ability to ask permission
|
* Give the Jetty build file ability to ask permission
|
||||||
before downloading the Jetty archive from the web,
|
before downloading the Jetty archive from the web,
|
||||||
|
@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
|
|||||||
public class RouterVersion {
|
public class RouterVersion {
|
||||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $";
|
public final static String ID = "$Revision: 1.548 $ $Date: 2008-02-10 15:00:00 $";
|
||||||
public final static String VERSION = "0.6.1.32";
|
public final static String VERSION = "0.6.1.32";
|
||||||
public final static long BUILD = 1;
|
public final static long BUILD = 2;
|
||||||
public static void main(String args[]) {
|
public static void main(String args[]) {
|
||||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||||
System.out.println("Router ID: " + RouterVersion.ID);
|
System.out.println("Router ID: " + RouterVersion.ID);
|
||||||
|
Reference in New Issue
Block a user