SSU: Reduce ACK time to 150 (ticket #2574)

This commit is contained in:
zzz
2019-08-15 17:45:06 +00:00
parent 5e76118ffd
commit 65e2132a25

View File

@ -28,7 +28,7 @@ class ACKSender implements Runnable {
private static final long POISON_PS = -9999999999l; private static final long POISON_PS = -9999999999l;
/** how frequently do we want to send ACKs to a peer? */ /** how frequently do we want to send ACKs to a peer? */
static final int ACK_FREQUENCY = 250; static final int ACK_FREQUENCY = 150;
public ACKSender(RouterContext ctx, UDPTransport transport) { public ACKSender(RouterContext ctx, UDPTransport transport) {
_context = ctx; _context = ctx;