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);
|
||||
if (h == null)
|
||||
error("bad list hash: " + hashstr);
|
||||
else if (_blackListEnabled)
|
||||
else if (blackListEnabled)
|
||||
blackList.add(h);
|
||||
else
|
||||
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
|
||||
* i2psnark: Display base name, not torrent file name (ticket #985)
|
||||
* I2PTunnel HTTP server: New POST limiter
|
||||
@ -83,7 +86,7 @@
|
||||
* Logging:
|
||||
- Require strict match of class name component
|
||||
- parseLimits() cleanup
|
||||
* SSU: More efficient ImboundMessageState
|
||||
* SSU: More efficient InboundMessageState
|
||||
* Streaming:
|
||||
- Fix active stream counting so it doesn't count streams
|
||||
that are closed and in TIME-WAIT state. Also, break out of the
|
||||
|
@ -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 = 12;
|
||||
public final static long BUILD = 13;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user