I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit bb5f3a92 authored by zzz's avatar zzz
Browse files

history for props, -1

parent 546b6685
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ import java.util.concurrent.atomic.AtomicInteger;
* @author zzz, welterde
*/
public class ObjectCounter<K> {
private ConcurrentHashMap<K, AtomicInteger> map;
private final ConcurrentHashMap<K, AtomicInteger> map;
public ObjectCounter() {
this.map = new ConcurrentHashMap<K, AtomicInteger>();
......
2011-08-25 zzz
* Blockfile:
- Avoid NPE after corruption (ticket #515)
- Add reverse lookup table; bump DB rev to 2
* I2PTunnelIRCClient:
- Big refactoring into multiple class files
- Allow AWAY and CAP messages
- First cut at DCC support - not for SOCKS (yet)
* Streaming:
- Hook I2CP ports through to I2PSocket
- Javadocs, init cleanups, final
* UDP:
- Complete rewrite of OutboundMessageFragments for
concurrent and for efficiency to avoid O(n**2) behavior
- Don't delay in OutboundMessageFragments at the end
of the loop if we have more to send now, this should
speed things up
- Queue a new send immediately after a packet is acked
- Send session destroy message when dropping connection
- Increase large MTU to 1492 (was 1350)
- Cleanups, log tweaks, javadocs, final
* 2011-08-23 0.8.8 released
2011-08-23 zzz
......
......@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 0;
public final static long BUILD = 1;
/** for example "-test" */
public final static String EXTRA = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment