forked from I2P_Developers/i2p.i2p
* I2CP: Fix deserialization of new RVLSM; enable by default
This commit is contained in:
@@ -77,7 +77,7 @@ public class RequestVariableLeaseSetMessage extends I2CPMessageImpl {
|
||||
@Override
|
||||
protected void doReadMessage(InputStream in, int size) throws I2CPMessageException, IOException {
|
||||
try {
|
||||
if (_sessionId == null)
|
||||
if (_sessionId != null)
|
||||
throw new IllegalStateException();
|
||||
_sessionId = new SessionId();
|
||||
_sessionId.readBytes(in);
|
||||
|
@@ -1,3 +1,11 @@
|
||||
2013-06-14 zzz
|
||||
* I2CP: Fix deserialization of new RVLSM; enable by default
|
||||
* i2psnark: Fix bug creating torrent with a single file in a directory
|
||||
|
||||
2013-06-12 zzz
|
||||
* Console: Add missing jetty jars to classpath (ticket #952)
|
||||
* I2PTunnel: Add advanced quantity options
|
||||
|
||||
2013-06-10 kytv
|
||||
* Translations (from Transifex)
|
||||
- Start of Turkish language translation
|
||||
|
@@ -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 = 8;
|
||||
public final static long BUILD = 9;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
@@ -38,7 +38,7 @@ class RequestLeaseSetJob extends JobImpl {
|
||||
|
||||
/** temp for testing */
|
||||
private static final String PROP_VARIABLE = "router.variableLeaseExpiration";
|
||||
private static final boolean DFLT_VARIABLE = false;
|
||||
private static final boolean DFLT_VARIABLE = true;
|
||||
|
||||
public RequestLeaseSetJob(RouterContext ctx, ClientConnectionRunner runner, LeaseRequestState state) {
|
||||
super(ctx);
|
||||
|
Reference in New Issue
Block a user