forked from I2P_Developers/i2p.i2p
Streaming: Fix bug causing hangs on loopback and preventing desired ack behavior (ticket #1939)
This commit is contained in:
@ -138,7 +138,7 @@ class ConnectionPacketHandler {
|
||||
boolean isNew;
|
||||
if (seqNum > 0 || isSYN) {
|
||||
isNew = con.getInputStream().messageReceived(seqNum, packet.getPayload()) &&
|
||||
!allowAck;
|
||||
allowAck;
|
||||
} else {
|
||||
isNew = false;
|
||||
}
|
||||
|
@ -1,3 +1,7 @@
|
||||
2017-11-22 zzz
|
||||
* Streaming: Fix bug causing loopback hangs and
|
||||
preventing desired ack behavior (ticket #1939)
|
||||
|
||||
2017-11-21 zzz
|
||||
* EepGet: Refuse attempted redirect to HTTPS, won't work
|
||||
* Reseed: Add support for reseeding via outproxy or Orchid (ticket #1841)
|
||||
|
@ -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 = 6;
|
||||
public final static long BUILD = 7;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user