I read through the libcurl-tutorial and I am able to set up a handle, options, and call curl_easy_perform() to download a file. But I do not understand how I can use curl_easy_pause() to pause the download.
In my application I spawn a separate thread that uses lib-curl to download this file so I initially thought I can call easy_pause from the main thread. But the documentation at http://curl.haxx.se/libcurl/c/curl_easy_pause.html says that the function should not be called from another thread. The call to curl_easy_perform() will not return till the download is complete so I cannot call curl_easy_pause() from the same thread. I am missing something/ Could someone tell me the correct way to use curl_easy_pause()? Thank you Hrishi ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
