Loading docs/libcurl/libcurl-tutorial.3 +2 −2 Original line number Original line Diff line number Diff line Loading @@ -191,8 +191,8 @@ similar to this: curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, write_data); curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, write_data); You can control what data your function get in the forth argument by setting You can control what data your callback function gets in the fourth argument another property: by setting another property: curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &internal_struct); curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &internal_struct); Loading Loading
docs/libcurl/libcurl-tutorial.3 +2 −2 Original line number Original line Diff line number Diff line Loading @@ -191,8 +191,8 @@ similar to this: curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, write_data); curl_easy_setopt(easyhandle, CURLOPT_WRITEFUNCTION, write_data); You can control what data your function get in the forth argument by setting You can control what data your callback function gets in the fourth argument another property: by setting another property: curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &internal_struct); curl_easy_setopt(easyhandle, CURLOPT_WRITEDATA, &internal_struct); Loading