Sortix 1.1dev ports manual
This manual documents Sortix 1.1dev ports. You can instead view this document in the latest official manual.
CURLOPT_XFERINFOFUNCTION(3) | curl_easy_setopt options | CURLOPT_XFERINFOFUNCTION(3) |
NAME
CURLOPT_XFERINFOFUNCTION - callback to progress meter functionSYNOPSIS
#include <curl/curl.h>curl_off_t dltotal,
curl_off_t dlnow,
curl_off_t ultotal,
curl_off_t ulnow);
DESCRIPTION
Pass a pointer to your callback function, which should match the prototype shown above.DEFAULT
By default, libcurl has an internal progress meter. That's rarely wanted by users.PROTOCOLS
AllEXAMPLE
https://curl.haxx.se/libcurl/c/progressfunc.htmlAVAILABILITY
Added in 7.32.0. This callback replaces CURLOPT_PROGRESSFUNCTION(3)RETURN VALUE
Returns CURLE_OK.SEE ALSO
CURLOPT_XFERINFODATA(3), CURLOPT_NOPROGRESS(3),November 26, 2019 | libcurl 7.69.0 |