Lines Matching defs:hnd
33 CURL *hnd;
38 hnd = curl_easy_init();
39 if(hnd) {
40 curl_easy_setopt(hnd, CURLOPT_URL, URL);
41 curl_easy_setopt(hnd, CURLOPT_NOPROGRESS, 1L);
42 curl_easy_setopt(hnd, CURLOPT_ALTSVC, libtest_arg2);
43 ret = curl_easy_perform(hnd);
47 CURL *also = curl_easy_duphandle(hnd);
56 curl_easy_reset(hnd);
60 curl_easy_cleanup(hnd);