而我的网络支持 MBS。当我尝试发送 1000 个数据包时,每个 800 字节大约需要 24 秒?为什么需要这么长时间?我也尝试过 UDP,但也没有更好。有什么参数可以改变吗?这种缓慢的速度有什么原因吗?
我正在使用的代码:
const string SERVER_IP = "10.10.10.34";
const int SERVER_PORT = 1234;
static void Main(string[] args)
{
TcpClient client = new TcpClient();
client.Connect(SERVER_IP, SERVER_PORT);
using (Stream stream = client.GetStream())
{
while (true)
{
byte[] data = new byte[800];
DateTime start=DateTime.Now;
for(int i=0;i<1000;i++)
{
stream.Write(data, 0, data.Length);
}
DateTime end=DateTime.Now;
var duration = end-start;
}
}
client.Close();
}
编辑注意:数据包的大小是 800 字节(而不是开头发布的)