From fadd5e3dce05fdc698db80a34874f6cbff188d31 Mon Sep 17 00:00:00 2001 From: Richard Fox Date: Wed, 27 Mar 2024 20:43:39 -0700 Subject: [PATCH] Revert "tweak: Increase default window size to 128" This reverts commit 1f55842b3a02b473ed123920a5a0eaef855fba2d. I am experimenting with the library and so need main to be back to what we're actually shipping. --- LiteNetLib/NetConstants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LiteNetLib/NetConstants.cs b/LiteNetLib/NetConstants.cs index 0562e8c8..ca7dfbcd 100644 --- a/LiteNetLib/NetConstants.cs +++ b/LiteNetLib/NetConstants.cs @@ -38,7 +38,7 @@ public enum DeliveryMethod : byte public static class NetConstants { //can be tuned - public const int DefaultWindowSize = 128; + public const int DefaultWindowSize = 64; public const int SocketBufferSize = 1024 * 1024; //1mb public const int SocketTTL = 255;