> Here is my program. It sounds like I need to change it? What do you think?
It will work, but you will not use your handlers in the same time.

> curl_easy_perform(curl_handle....)
Note that this is a blocking call.


> if (something){
>   curl_handle2=curl_easy_init();
You can also just call to curl_easy_reset(curl_handle), and re-use the same 
exact handle to perform the 2nd transfer.

> curl_easy_perform(curl_handle2....)
This is a different time (just after the first transfer was ended), but you 
will have 2 curl handles allocated on your stack - no problem with that.

HTH

Yehezkel Horowitz
-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette:  http://curl.haxx.se/mail/etiquette.html

Reply via email to