简单可靠的 UDP C++图书馆
我需要一个可靠的 UDP 库。我写的效果不太好,我想看看第三方在相同的情况下可以做什么。
由于 xcode 中的一些“有趣的”编译问题,Enet 将无法工作(我还有另一个关于堆栈溢出的问题)。
任何有关可移植、可靠的 UDP 库的建议将不胜感激。
I am in need of a reliable UDP library. The one I wrote does not work too well and I would like to see what a 3rd party can do in the same circumstances.
Enet will not work because of some "interesting" compile issues in xcode (I have another question on stack overflow about that).
Any suggestions for a portable, reliable UDP library would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
UDT
udt.sourceforge.net/
UDT
udt.sourceforge.net/
我一直认为 Plan 9 网络库是对其 Unix 对应版本的重大升级。有一个 Unix 向后移植。
I've always felt that the Plan 9 networking libraries were a major upgrade over their Unix counterparts. There is a Unix backport.
P2engine 是一个灵活高效的平台,使 p2p 系统开发变得更加容易。可靠的 UDP、消息传输、消息调度程序、快速安全的信号/槽...
https://sourceforge.net/项目/p2engine/
P2engine is a flexible and efficient platform for making p2p system development easier. Reliable UDP, Message Transport , Message Dispatcher, Fast and Safe Signal/Slot...
https://sourceforge.net/projects/p2engine/
尝试 boost::asio 或 ACE。我会推荐前者而不是后者。
Try boost::asio or ACE. I would recommend the former over the latter.