This commit is contained in:
snltty
2025-09-17 18:03:28 +08:00
parent 38d0f9d40a
commit d45c5af059
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ namespace linker.tun
fixed (byte* pptr = fakeBuffer.Span)
{
ushort win = (ushort)Math.Max(Math.Min(bufferFree / state.WindowScale, 65535), 8);
ushort win = (ushort)Math.Max(Math.Min(bufferFree*0.8 / state.WindowScale, 32*1024), 4);
fakeLength = originPacket.ToAck(state.Seq, win, pptr);
if (new FakeAckPacket(pptr).Cq <= state.Cq)
{

View File

@@ -1,5 +1,5 @@
v1.9.1
2025-09-17 17:32:33
2025-09-17 18:03:28
1. 一些累计更新
2. 服务器转发多节点
3. 虚拟网卡下伪造ACK为TCP-in-TCP隧道提速