Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如果 TcpClient 发生任何事情并且从未收到或 ack 从未返回给客户端,TcpClient 是否会重新传输数据包?我正在考虑执行以下操作,但我不确定它是否无用?
if(data.length != reply.length){ NetworkStream str = client.GetStream(); str.Write(data, 0, data.Length); }
我想知道如果 TcpClient 发生任何事情,TcpClient 是否会重新传输数据包
了解这个问题需要有两个部分的答案。