How do I fetch multiple files with libcurl?
795 796 libcurl has excellent support for transferring multiple files. You should 797 just repeatedly set new URLs with curl_easy_setopt() and then transfer it 798 with curl_easy_perform(). The handle you get from curl_easy_init() is not 799 only reusable, but you’re even encouraged to reuse it if you can, as that 800 will enable libcurl to use persistent connections.