Streaming: Fix bug causing hangs on loopback and preventing desired ack behavior (ticket #1939)

This commit is contained in:
zzz
2017-11-22 00:10:52 +00:00
parent b2dcf2069f
commit ad056bcef5
3 changed files with 6 additions and 2 deletions

View File

@ -138,7 +138,7 @@ class ConnectionPacketHandler {
boolean isNew;
if (seqNum > 0 || isSYN) {
isNew = con.getInputStream().messageReceived(seqNum, packet.getPayload()) &&
!allowAck;
allowAck;
} else {
isNew = false;
}

View File

@ -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)

View File

@ -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 = "";