![]() |
![]()
| ![]() |
![]()
NAMECURLOPT_XFERINFODATA - pointer passed to the progress callback SYNOPSIS#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_XFERINFODATA, void *pointer); DESCRIPTIONPass a pointer that is untouched by libcurl and passed as the first argument in the progress callback set with CURLOPT_XFERINFOFUNCTION(3). This is an alias for CURLOPT_PROGRESSDATA(3). DEFAULTNULL PROTOCOLSThis functionality affects all supported protocols EXAMPLEstruct progress { AVAILABILITYAdded in curl 7.32.0 RETURN VALUEcurl_easy_setopt(3) returns a CURLcode indicating success or error. CURLE_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors(3). SEE ALSOCURLOPT_NOPROGRESS(3), CURLOPT_VERBOSE(3), CURLOPT_XFERINFOFUNCTION(3)
|