我如何知道我在c#中收到了多少udp数据(包括坏数据)
我想知道到达我的 updclient 的数据量,包括损坏/错误的数据、数据包标头等。我想使用 udp 计算吞吐量。
谢谢。
I want to know the amount of data arrived at my updclient including damaged/bad data, packet header etc. i want to calculate throughput using udp.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UdpClient
是一个非常高级的接口,不提供对原始数据包数据的访问。要获取此类信息,您需要使用一些低级 API 并自行处理数据包。然而,实际上,数据包在运输过程中损坏的可能性非常低 - 大多数时候,您要么收到正确的数据包,要么根本没有收到数据包。数据包标头通常具有恒定大小(UDP 标头为 8 个字节,IP 标头通常为 20 个字节),因此您只需将此值添加到每个数据报的大小(由 UdpClient.Receive 返回) /code>) 获取总数据包大小。
UdpClient
is a very high-level interface which doesn't provide access to raw packet data. To get such information, you will need to use some low-level API and process the packets yourself.However, in practice, the chances of a packet getting damaged in transit are very low - most of the time, you either get the correct packet or you don't get the packet at all. The packet headers are generally of constant size (8 bytes for the UDP header and usually 20 bytes for the IP header), so you can just add this value to the size of each datagram (which is returned by
UdpClient.Receive
) to get the total packet size.