http c++图书馆?

发布于 2024-09-08 03:12:14 字数 61 浏览 5 评论 0原文

你好,我想知道是否有某种 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 技术交流群。

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

发布评论

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

评论(3

再见回来 2024-09-15 03:12:14

也许libCURL

Maybe libCURL?

半﹌身腐败 2024-09-15 03:12:14

我还在我的项目中使用 libCURL。它与许多编程语言都有绑定。 (libcurl 绑定)
但在没有它们的情况下使用它也非常容易。最简单的示例:

#include <stdio.h>
#include <curl/curl.h>

int main(void)
{
  CURL *curl;
  CURLcode res;

  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
    res = curl_easy_perform(curl);

    /* always cleanup */ 
    curl_easy_cleanup(curl);
  }
  return 0;
}

这个示例和更多示例可以在此处<找到/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:

#include <stdio.h>
#include <curl/curl.h>

int main(void)
{
  CURL *curl;
  CURLcode res;

  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se");
    res = curl_easy_perform(curl);

    /* always cleanup */ 
    curl_easy_cleanup(curl);
  }
  return 0;
}

This example and many more can be found here.

野心澎湃 2024-09-15 03:12:14

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.

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