vote up 2 vote down star

Is there an easy way to cancel a curl_easy_perform from another thread?

flag

3 Answers

vote up 4 vote down check

You have to use the callback functions (write/read/progress) to perform the cancel. The other thread needs to set a flag and the callback function checks the flag and returns the proper value to cancel the operation.

link|flag
vote up 0 vote down

Im using progress callback atm. So if i return !0 in that it will cancel it?

Edit: Works a treat. Thanks!

link|flag
vote up 0 vote down

The above strategy fails in some conditions. On some FTP sites I experience a 60 second delay before the transfer begins. During this time no callbacks are invoked, if my users try to cancel the transfer they get hung on the pthread_join until the transfer starts and the first callback runs.

Is my only options to do a pthread_cancel? Is there any other way to get curl_easy_perform to return?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.