Home | History | Annotate | Download | only in libtest

Lines Matching refs:handle

34  * 2. dup handle
40 CURL *handle = NULL;
50 easy_init(handle);
52 easy_setopt(handle, CURLOPT_URL, URL);
53 easy_setopt(handle, CURLOPT_WILDCARDMATCH, 1L);
54 easy_setopt(handle, CURLOPT_VERBOSE, 1L);
56 res = curl_easy_perform(handle);
60 res = curl_easy_perform(handle);
64 duphandle = curl_easy_duphandle(handle);
67 curl_easy_cleanup(handle);
68 handle = duphandle;
72 multi_add_handle(mhandle, handle);
110 curl_easy_cleanup(handle);