gpt4 book ai didi

c - libcurl 回调函数,使用简单的接口(interface)

转载 作者:行者123 更新时间:2023-11-30 15:31:08 32 4
gpt4 key购买 nike

我试图理解/确定 libcurl 使用的“回调函数”的性质。像往常一样,在使用curl_easy_setopt设置所有选项后,我将调用curl_easy_perform。

但是当有回调函数时,libcurl实际上会返回退出curl_easy_perform之前的所有数据。

据我所知,多接口(interface)是为了提供非阻塞功能。但是“回调函数”意味着“稍后”在其他事情发生时被调用,对吗?那么对于简单接口(interface)来说,在收到所有数据之前它真的会阻塞吗?我该如何测试这个?

我一直在研究,并在下面引用了 libcurl 文档中的两段内容。但我坚持尝试理解回调函数和阻塞方式的概念 http://curl.haxx.se/libcurl/c/curl_easy_perform.html

curl_easy_perform - 手册页:

curl_easy_perform performs the entire request in a blocking manner and returns when done, or if it failed. For non-blocking behavior, see curl_multi_perform.”

http://curl.haxx.se/libcurl/c/curl_multi_perform.html

curl_multi_perform - 手册页:

This function handles transfers on all the added handles that need attention in an non-blocking fashion”

请注意,目的是确保在函数调用结束后,应用程序必须拥有所有数据。我们严格按顺序做事,无法承受在不同时间飞入的大量数据。

最佳答案

是的,简单的接口(interface)会阻塞,直到整个请求完成。您可以通过执行大量请求并验证它是否以这种方式工作来测试这一点 - 或者只是信任文档和依赖此行为的数千名用户。

“回调”意味着它们是您编写并提供的函数,可以从您调用的函数中“回调”。因此,您调用curl_easy_perform(),然后libcurl本身根据文档一直回调到您的回调函数,直到出现故障或传输完成,然后curl_easy_perform()再次返回到您的程序。

关于c - libcurl 回调函数,使用简单的接口(interface),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25087793/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com