有没有c++ Linux 上的 tcp 服务器?
我想用c++开发一个无阻塞的tcp服务器,有没有像Twisted这样的开源项目?
I want to develop one no-blocking tcp server with c++, is there any open source project like Twisted ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Boost.Asio 讨论得相当多经常出现在 SO 上的 boost-asio 标签中。从我写的标签维基复制:
Boost.Asio is discussed quite frequently in the boost-asio tag on SO. Copying from the tag wiki that I wrote:
看一下 ZeroMQ,它有多个接口,包括 C++。
它不仅仅只是一个套接字 tcp 服务器,但这也是其吸引力的一部分。它根据非常自由的 LGPL 获得许可,并提供可选的商业支持。
Have a look at ZeroMQ which has several interfaces, including C++.
It does more that just a socket tcp server, but that is part of the appeal. It is licensed under the very liberal LGPL with optional commercial support.
查看 ACE 工具包。特别是 Reactor 和事件多路分解以及事件处理程序分派支持。该许可证非常简单,类似于 BSD 许可证
Take a look at the ACE Toolkit. Especially the Reactor and event demultiplexing and event handler dispatching support. The license is very easy and is similar to the BSD License