This commit is contained in:
snltty
2025-08-31 21:56:11 +08:00
parent 491c0692e8
commit c83e2e2051
2 changed files with 2 additions and 5 deletions

View File

@@ -61,10 +61,6 @@ namespace linker.tunnel.transport
{
return null;
}
if (tunnelTransportInfo.Direction == TunnelDirection.Reverse)
{
await Task.Delay(50).ConfigureAwait(false);
}
ITunnelConnection connection = await ConnectForward(tunnelTransportInfo, TunnelMode.Client).ConfigureAwait(false);
if (connection != null)
{
@@ -114,6 +110,7 @@ namespace linker.tunnel.transport
targetSocket.IPv6Only(AddressFamily.InterNetworkV6, false);
targetSocket.WindowsUdpBug();
targetSocket.ReuseBind(new IPEndPoint(IPAddress.IPv6Any, tunnelTransportInfo.Local.Local.Port));
await Task.Delay(500).ConfigureAwait(false);
for (int i = 0; i < 5; i++)
{

View File

@@ -1,5 +1,5 @@
v1.9.1
2025-08-31 18:14:23
2025-08-31 21:56:11
1. 一些累计更新
2. 服务器转发多节点
3. 虚拟网卡下伪造ACK为TCP-in-TCP隧道提速