forked from I2P_Developers/i2p.i2p
SSU2: Enable handling of ack-immediate flag by default
test code that was off by default was previously checked in
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2022-09-09 zzz
|
||||
* SSU2: Enable handling of ack-immediate flag by default
|
||||
|
||||
2022-09-07 zzz
|
||||
* SSU: Fallback processing for MTU detection
|
||||
* Transports: Don't rekey noise params on testnet
|
||||
|
||||
2022-09-06 zzz
|
||||
* NetDB: Fix reseeding when clock is skewed
|
||||
* SSU2: Don't publish or connect if our MTU becomes too small
|
||||
|
||||
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Git";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 7;
|
||||
public final static long BUILD = 8;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
||||
@@ -493,7 +493,7 @@ public class PeerState2 extends PeerState implements SSU2Payload.PayloadCallback
|
||||
ECNReceived();
|
||||
} //// !_dead
|
||||
|
||||
boolean ackImmediate = (header.data[SHORT_HEADER_FLAGS_OFFSET] & 0x01) != 0 && _context.getBooleanProperty("ssu2.ackImmediate");
|
||||
boolean ackImmediate = (header.data[SHORT_HEADER_FLAGS_OFFSET] & 0x01) != 0;
|
||||
if (ackImmediate) {
|
||||
_ackTimer.scheduleImmediate();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user