From 680abd3cb0db55b1df82c4eaf3708eacef98427a Mon Sep 17 00:00:00 2001 From: Michael Wolfendale <4563722+wolfendale@users.noreply.github.com> Date: Tue, 2 Jul 2024 16:14:43 +0100 Subject: [PATCH] chore: update max silence time --- stream_settings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream_settings.go b/stream_settings.go index 126e213..22320a3 100644 --- a/stream_settings.go +++ b/stream_settings.go @@ -67,6 +67,6 @@ func NewStreamSettings() *StreamSettings { CompressionAlgorithm: compression.NewDummyCompression(), RTTRetransmit: 2, // * This value is taken from Xenoblade Chronicles, WATCH_DOGS sets this to 0x32 but it is then ignored. Setting this to 2 matches the TCP spec by not using resent packets in RTT calculations. RetransmitTimeoutMultiplier: 1.25, - MaxSilenceTime: 5000, + MaxSilenceTime: 10000, } }