这是什么样的UDP协议?

发布于 2024-10-12 12:01:57 字数 98 浏览 2 评论 0原文

该软件通过发送保持活动消息来确保自身处于活动状态。发送特定消息时,等待ACK到达,如果超时后仍未到达,则再次发送相同的消息(该消息最多发送3次)。它看起来像 TCP,但它是 UDP。

The software ensures that itself is alive by sending a keep alive message. When sending a specific message, it waits for the ACK to arrive, if not after timeout it will send the same message again (max for sending of this msg is 3 times). It looks like TCP but it is UDP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掀纱窥君容 2024-10-19 12:01:57

没有足够的信息来识别特定协议 - 它可以是基于 UDP 构建的任何类型的可靠消息传递协议。构建这样一个协议有很多原因 - 使用 UDP 打洞 进行 NAT 规避,更好地控制拥塞控制算法选择,或者只是避免 TCP 的消息重新排序,当顺序消息是否被接收并不重要(这可以帮助减少延迟)。

There's not enough information to identify a specific protocol - it could be any kind of reliable messaging protocol built over UDP. There are a number of reasons to build such a protocol - NAT evasion using UDP hole punching, finer control over congestion control algorithm selection, or simply avoiding TCP's message reordering, when the order in which messages are received is not important (this can help reduce latency).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文