Use eager retransmission if the transport is lossy and cheap.

This commit is contained in:
akwizgran
2021-06-10 17:42:19 +01:00
committed by Torsten Grote
parent a39b367477
commit 852413b36a
11 changed files with 50 additions and 7 deletions

View File

@@ -35,6 +35,11 @@ public class TestTransportConnectionWriter
return 60_000;
}
@Override
public boolean isLossyAndCheap() {
return false;
}
@Override
public OutputStream getOutputStream() {
return out;