簡體   English   中英

CURL C API:未調用回調

[英]CURL C API: callback was not called

下面的代碼是對CURL C API的測試。 問題是永遠不會調用回調函數write_callback 為什么?

/** compilation: g++ source.cpp -lcurl */

#include <assert.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <curl/curl.h>

using namespace std;

static size_t write_callback(void *ptr, size_t size, size_t nmemb, void *userp)
{
    std::cerr << "CALLBACK WAS CALLED" << endl;
    exit(-1);
    return size*nmemb;
}

static void test_curl()
{
    int any_data=1;
    CURLM* multi_handle=NULL;
    CURL* handle_curl = ::curl_easy_init();
    assert(handle_curl!=NULL);
    ::curl_easy_setopt(handle_curl, CURLOPT_URL, "http://en.wikipedia.org/wiki/Main_Page");
    ::curl_easy_setopt(handle_curl, CURLOPT_WRITEDATA, &any_data);
    ::curl_easy_setopt(handle_curl, CURLOPT_VERBOSE, 1);
    ::curl_easy_setopt(handle_curl, CURLOPT_WRITEFUNCTION, write_callback);
    ::curl_easy_setopt(handle_curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");

    multi_handle = ::curl_multi_init();
    assert(multi_handle!=NULL);
    ::curl_multi_add_handle(multi_handle, handle_curl);
    int still_running=0;
    /* lets start the fetch */
    while(::curl_multi_perform(multi_handle, &still_running) ==
          CURLM_CALL_MULTI_PERFORM );
    std::cerr << "End of curl_multi_perform."<< endl;
    //cleanup should go here
    ::exit(EXIT_SUCCESS);
}

int main(int argc,char** argv)
{
    test_curl();
    return 0;
}

非常感謝

皮埃爾

如果仍有待處理的操作,則需要檢查still_running的值並再次調用curl_multi_perform()

簡單的例子:

int still_running=0;
/* lets start the fetch */
do {
    while(::curl_multi_perform(multi_handle, &still_running) ==
        CURLM_CALL_MULTI_PERFORM);
} while (still_running);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM