CURLOPT_SEEKFUNCTION (3) Linux Manual Page
CURLOPT_SEEKFUNCTION – user callback for seeking in input stream Synopsis #include <curl/curl.h> /* These are the return codes for the seek callbacks */ #define CURL_SEEKFUNC_OK 0 #define CURL_SEEKFUNC_FAIL 1 /* fail the entire transfer */ #define CURL_SEEKFUNC_CANTSEEK 2 /* tell libcurl seeking can’t be done, so libcurl might try other means instead */ int seek_callback(void…
