I want to properly reuse a curl handle, so that it won\'t give me errors and function normally.
Suppose I have this piece of code:
CURL *curl; c
Or do I need to use curl_easy_reset() on that handle?
You either reset it XOR clean it up (before assigning the return value of curl_easy_init() again) - doing both is not good. For more info, see the documentation.
curl_easy_init()