forked from I2P_Developers/i2p.i2p
* Streaming: Fix instantiation failure with blacklist entries,
caused by bad fix for ticket #1070
This commit is contained in:
@ -784,7 +784,7 @@ class ConnectionOptions extends I2PSocketOptionsImpl {
|
|||||||
Hash h = ConvertToHash.getHash(hashstr);
|
Hash h = ConvertToHash.getHash(hashstr);
|
||||||
if (h == null)
|
if (h == null)
|
||||||
error("bad list hash: " + hashstr);
|
error("bad list hash: " + hashstr);
|
||||||
else if (_blackListEnabled)
|
else if (blackListEnabled)
|
||||||
blackList.add(h);
|
blackList.add(h);
|
||||||
else
|
else
|
||||||
accessList.add(h);
|
accessList.add(h);
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
2013-10-27 zzz
|
||||||
|
* Streaming; Fix crash caused by previous blacklist fix (ticket #1070)
|
||||||
|
|
||||||
2013-10-26 zzz
|
2013-10-26 zzz
|
||||||
* i2psnark: Display base name, not torrent file name (ticket #985)
|
* i2psnark: Display base name, not torrent file name (ticket #985)
|
||||||
* I2PTunnel HTTP server: New POST limiter
|
* I2PTunnel HTTP server: New POST limiter
|
||||||
@ -83,7 +86,7 @@
|
|||||||
* Logging:
|
* Logging:
|
||||||
- Require strict match of class name component
|
- Require strict match of class name component
|
||||||
- parseLimits() cleanup
|
- parseLimits() cleanup
|
||||||
* SSU: More efficient ImboundMessageState
|
* SSU: More efficient InboundMessageState
|
||||||
* Streaming:
|
* Streaming:
|
||||||
- Fix active stream counting so it doesn't count streams
|
- Fix active stream counting so it doesn't count streams
|
||||||
that are closed and in TIME-WAIT state. Also, break out of the
|
that are closed and in TIME-WAIT state. Also, break out of the
|
||||||
|
@ -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 = 12;
|
public final static long BUILD = 13;
|
||||||
|
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "";
|
public final static String EXTRA = "";
|
||||||
|
Reference in New Issue
Block a user