gpt4 book ai didi

c# - 这是 ReceiveFromAsync() 错误吗?

转载 作者:行者123 更新时间:2023-11-30 18:05:12 28 4
gpt4 key购买 nike

这是我的第一个问题,我不是以英语为母语的人,所以很抱歉我的(可能)不准确的英语。

我正在实现实时网络引擎并使用 Socket.xxxAsync() 方法。

我像这样在服务器端创建了一个 UDP 套接字。

m_udpSock = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
m_udpSock.Bind(new IPEndPoint(IPAddress.Any, udpPort));
SocketAsyncEventArgs udpRecvArg = new SocketAsyncEventArgs();
udpRecvLoopStart(m_udpSock, udpRecvArg);

(客户端已知 udpPort。)

    private void udpRecvLoopStart(Socket udpSocket, SocketAsyncEventArgs udpRecvArg)
{
udpRecvArg.AcceptSocket = udpSocket;
byte[] udpRecvBuffer = new byte[NetworkEngineConst.MsgSizeMax];
udpRecvArg.SetBuffer(udpRecvBuffer, 0, udpRecvBuffer.Length);
udpRecvArg.RemoteEndPoint = new IPEndPoint(IPAddress.Any, 0);
udpRecvArg.Completed += new EventHandler<SocketAsyncEventArgs>(udpRecvArg_Completed);

udpRecv(udpRecvArg);
}

private void udpRecv(SocketAsyncEventArgs udpRecvArg)
{
bool synchronous = false;
try
{
synchronous = !udpRecvArg.AcceptSocket.ReceiveFromAsync(udpRecvArg);
}
catch (Exception e)
{
OnIOError("recvUdp()\n" + e.ToString());
return;
}
if (synchronous)
udpRecvArg_Completed(this, udpRecvArg);
}

完成的事件处理程序是这样的:

    void udpRecvArg_Completed(object sender, SocketAsyncEventArgs udpRecvArg)
{
EndPoint udpEp = udpRecvArg.RemoteEndPoint;
string msg = Encoding.UTF8.GetString(udpRecvArg.Buffer, 14, udpRecvArg.BytesTransferred - 14);
Debug.WriteLine(udpEp + " " + msg);
udpRecv(udpRecvArg);
}

(前14个字节是消息前缀、CRC和序列号)

两个(或更多)客户端向服务器发送 UDP 数据包。(发送速率为每秒数百个)

例如,client1(192.168.0.1:50113)发送“11111111111111111111111111111”,client2(192.168.0.1:59368) 发送“2”。

但有时(并非总是)端点是错误的。日志如下:

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:59368 2

192.168.0.1:59368 2

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:59368 1111111111111111111111111111 <- 错误部分

192.168.0.1:59368 2

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:59368 2

192.168.0.1:50113 11111111111111111111111111111

192.168.0.1:59368 2

192.168.0.1:59368 2

我怀疑是包错了,但是包没有错(我用Wireshark确认过)

这是一个错误吗?

(添加)

我试过了

        m_udpSock = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
m_udpSock.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.PacketInformation, true);
m_udpSock.Bind(new IPEndPoint(IPAddress.Any, udpPort));

并将 ReceiveFromAsync() 替换为 ReceiveMessageFromAsync()。

但是 SocketAsyncEventArgs.ReceiveMessageFromPacketInfo.Address 为空

(添加)ReceiveMessageFromAsync() 问题是一个错误。

在 .NET Framework 4.0 中修复

here

谢谢。

最佳答案

也许尝试使用 Socket.ReceiveMessageFromAsync然后使用 ReceiveMessageFromPacketInfo 获取数据包数据.

仅供引用 this是另一种方法(请参阅答案中的编辑)

HTH

关于c# - 这是 ReceiveFromAsync() 错误吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5802998/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com