You are missing a curl_multi_remove_handle() call in the multi-app.c example. Right?
You could also clean-up the easy handles inside the curl_multi_info_read() method, correct?
Unrelated question: Sometimes I see the while(..curl_multi_info_read()) inside the main while(still_running). But this multi-app.c example the two while loops are after each other.
What is the best way to execute curl_multi_info_read()? Inside the while loop of the other while (like crawler.c or 10-at-a-time.c examples), or after each other like the multi-app.c example?
Thanks!
Regards,
Melroy van den Berg
You are missing a
curl_multi_remove_handle()call in the multi-app.c example. Right?You could also clean-up the easy handles inside the curl_multi_info_read() method, correct?
Unrelated question: Sometimes I see the
while(..curl_multi_info_read())inside the mainwhile(still_running). But this multi-app.c example the two while loops are after each other.What is the best way to execute
curl_multi_info_read()? Inside the while loop of the other while (like crawler.c or 10-at-a-time.c examples), or after each other like the multi-app.c example?Thanks!
Regards,
Melroy van den Berg