curl_easy_duphandle (3) Linux Manual Page
NAME curl_easy_duphandle – Clone a libcurl session handle SYNOPSIS #include <curl/curl.h> CURL *curl_easy_duphandle(CURL *handle); DESCRIPTION This function will return a new curl handle, a duplicate, using all the options previously set in the input curl handle. Both handles can subsequently be used independently and they must both be freed with curl_easy_cleanup(3). All strings that the…
