http c++图书馆?
你好,我想知道是否有某种 C++ 库可以处理 HTTP、HTTPs、分块等。Google 没有找到任何东西。
Hi I am wondreing if there is some kind of C++ library that deals with HTTP, HTTPs, chunking etc. Google did not find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许libCURL?
Maybe libCURL?
我还在我的项目中使用 libCURL。它与许多编程语言都有绑定。 (libcurl 绑定)
但在没有它们的情况下使用它也非常容易。最简单的示例:
这个示例和更多示例可以在此处<找到/a>.
I'm also using libCURL in my projects. It has bindings with many programming languages. (libcurl Bindings)
But using it without them is also very easy. Simplest example:
This example and many more can be found here.
cpp-netlib。它是纯 C++,并且与 boost 社区相关联,尽管还不是 boost 的一部分。
cpp-netlib. It is pure C++ and it is linked to the boost community, although not yet part of boost.