UDP可靠数据服务实现
我正在尝试使用 UDP 实现简单的数据传输。我的校验和有问题,给定一个包含数据的数据包,我应该如何实现校验和?还知道如何实现超时以便触发重传吗?谢谢
I'm trying to implement a simple data transfer using UDP. I have a problem for the checksum, given a packet containing the data, how should I implement the checksum? also any idea how to implement the timeouts so it will trigger the retransmission ? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不尝试 Reliable UDP,请参阅 http://en.wikipedia.org/wiki/Reliable_User_Datagram_Protocol
有一个标准。
Why not try Reliable UDP, see http://en.wikipedia.org/wiki/Reliable_User_Datagram_Protocol
It has a standard.