remove another 8887 reference

This commit is contained in:
zzz
2009-11-24 20:22:31 +00:00
parent 95e0492b32
commit 105524d9c0
4 changed files with 20 additions and 2 deletions

View File

@ -1,4 +1,22 @@
2009-11-24 zzz
* DataStructures: Remove unused Logs
* OrderedProperties: Simplify, use in i2psnark
* Profiles: Record successes in the DB fail rate
too, so we can calculate a percentage
* profiles.jsp:
- Change fail rate from count to percent
- Hide standard profiles by default
* Streaming:
- When an "immediate" ack is requested, do it within
250 ms (was 2000)
- Request immediate acks when < 1/3 of window remains,
or when < 3 packets remain in window,
and every 8 packets (was when < 2 packets in window remain)
- Change requested delay to RTT/2 (was RTO/2)
- Log cleanup and javadoc
2009-11-21 zzz 2009-11-21 zzz
* GeoIP: Update to Nov 17 2009 data
* Netdb Floodfill rework part 4 of N: * Netdb Floodfill rework part 4 of N:
- Search closest-to-the-key - Search closest-to-the-key
- Put closest-to-the-key in explore don't-include-list - Put closest-to-the-key in explore don't-include-list

View File

@ -73,7 +73,7 @@ up, you can:</p>
<h2><a name="trouble">Troubleshooting</a></h2> <h2><a name="trouble">Troubleshooting</a></h2>
<p>Be patient - I2P may be slow to start the first time as it searches for peers. <p>Be patient - I2P may be slow to start the first time as it searches for peers.
If, after 30 minutes, your Active: connected/recent count has less than 10 connected If, after 30 minutes, your Active: connected/recent count has less than 10 connected
peers, you should open port 8887 on your firewall for better connectivity. If peers, you should open I2P's port on your firewall for better connectivity. If
you cannot see any eepsites at all (even <a href="http://www.i2p2.i2p/">www.i2p2.i2p</a>), you cannot see any eepsites at all (even <a href="http://www.i2p2.i2p/">www.i2p2.i2p</a>),
be sure your browser proxy is set to 127.0.0.1 port 4444. You may also want be sure your browser proxy is set to 127.0.0.1 port 4444. You may also want
to review the information on the <a href="http://www.i2p2.i2p/">I2P website</a>, to review the information on the <a href="http://www.i2p2.i2p/">I2P website</a>,

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 20; public final static long BUILD = 21;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;