From 0c72fe738322426099ee40c5e013a59efc0229a5 Mon Sep 17 00:00:00 2001
From: zzz <zzz@mail.i2p>
Date: Sun, 14 Dec 2008 15:14:05 +0000
Subject: [PATCH] history for prop -5

---
 history.txt                                   | 28 +++++++++++++++++++
 .../src/net/i2p/router/RouterVersion.java     |  2 +-
 2 files changed, 29 insertions(+), 1 deletion(-)

diff --git a/history.txt b/history.txt
index 8a9ef57917..94c5f231fe 100644
--- a/history.txt
+++ b/history.txt
@@ -1,3 +1,31 @@
+2008-12-14 zzz
+    * Contexts: Add int getProperty(String prop, int default)
+    * I2PAppThread: Constructor fix
+    * More split classes into their own files for mkvore
+    * Streaming: Don't build test cases by default
+    * Summary bar: Replace links with buttons
+    * Transport:
+      - Cleanup max connections code
+      - Add i2np.udp.maxConnections
+      - Set max connections based on share bandwidth
+      - Add haveCapacity() that can be used for connection
+        throttling in the router
+      - Reject IBGW/OBEP requests when near connection limit
+      - Reduce idle timeout when near connection limit
+    * Tunnel request handler:
+      - Require tunnel.dropLoad* stats
+      - Speed up request loop
+    * I2CP, HostsTxtNamingService, I2PTunnel:
+      Implement Base32 Hash hostnames, via the naming service.
+      Names are of the form [52-characters].i2p, where
+      the 52 characters are the Base32 representation of our
+      256-byte hash. The client requests a lookup of the hash
+      via a brief I2CP session using new I2CP request/reply
+      messages. The router looks up the leaseset for the hash
+      to convert the hash to a dest. Convert the I2PTunnel
+      'preview' links to use Base32 hostnames as a
+      demonstration.
+
 2008-12-08 zzz
     * ATalk: Move from core to apps
     * Blocklists: enable by default, include blocklist file
diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java
index 57680063e5..9ec5400564 100644
--- a/router/java/src/net/i2p/router/RouterVersion.java
+++ b/router/java/src/net/i2p/router/RouterVersion.java
@@ -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 = "0.6.5";
-    public final static long BUILD = 4;
+    public final static long BUILD = 5;
     public static void main(String args[]) {
         System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
         System.out.println("Router ID: " + RouterVersion.ID);
-- 
GitLab