隐藏curl_easy_perform

发布于 2024-09-01 08:55:29 字数 58 浏览 11 评论 0原文

如何隐藏curl_easy_perform输出(在shell中)?
这是关于 C 应用程序的。

How can I hide curl_easy_perform output (in a shell)?
This is in regards to a C application.

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

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

发布评论

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

评论(3

烟雨扶苏 2024-09-08 08:55:29

在curl_easy_setopt()中使用CURLOPT_NOBODY。
示例:

 ...

CURL *curl;
CURLcode statusCode;

curl = curl_easy_init();
if(curl){
    curl_easy_setopt(curl, CURLOPT_URL, "http://www.google.com/");
    //CURLOPT_NOBODY does the trick
    curl_easy_setopt(curl, CURLOPT_NOBODY, 1);
    curl_easy_perform(curl);

 ...

链接到文档: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#卷曲无人

Use CURLOPT_NOBODY in curl_easy_setopt().
Example:

 ...

CURL *curl;
CURLcode statusCode;

curl = curl_easy_init();
if(curl){
    curl_easy_setopt(curl, CURLOPT_URL, "http://www.google.com/");
    //CURLOPT_NOBODY does the trick
    curl_easy_setopt(curl, CURLOPT_NOBODY, 1);
    curl_easy_perform(curl);

 ...

Link to docs: http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTNOBODY

与酒说心事 2024-09-08 08:55:29

设置 CURLOPT_WRITEFUNCTION 和/或 CURLOPT_WRITEDATA 选项:

FILE *f = fopen("target.txt", "wb");
curl_easy_setopt(handle, CURLOPT_WRITEDATA, f);

默认情况下,libcurl 将输出写入 stdout。当您覆盖它时(几乎所有应用程序都会这样做),它将写入另一个文件或将输出块传递给回调。有关更多详细信息,请参阅 CURLOPT_WRITEFUNCTION 的文档。

Set the CURLOPT_WRITEFUNCTION and/or CURLOPT_WRITEDATA options:

FILE *f = fopen("target.txt", "wb");
curl_easy_setopt(handle, CURLOPT_WRITEDATA, f);

By default, libcurl writes output to stdout. When you override this (which is what almost any application will do), it will write to another file or to pass chunks of output to a callback. See the documentation for CURLOPT_WRITEFUNCTION for more details.

铜锣湾横着走 2024-09-08 08:55:29

正如 Joey 所说CURLOPT_WRITEFUNCTION 将允许你完全忽略所有输出。如果您希望数据消失而不写入任何文件描述符,只需设置一个绝对不执行任何操作的回调即可。

例如,

/* Never writes anything, just returns the size presented */
size_t my_dummy_write(char *ptr, size_t size, size_t nmemb, void *userdata)
{
   return size * nmemb;
}

然后在您的选项中:

curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, &my_dummy_write);

或者,将文件句柄指向 NULL 设备(更容易)。

As Joey said, CURLOPT_WRITEFUNCTION will allow you to completely disregard all output. Just set up a callback that does absolutely nothing if you want the data to just go away, without being written to any file descriptor.

For instance,

/* Never writes anything, just returns the size presented */
size_t my_dummy_write(char *ptr, size_t size, size_t nmemb, void *userdata)
{
   return size * nmemb;
}

Then in your options:

curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, &my_dummy_write);

Or, point the file handle at a NULL device (a lot easier).

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