Lines Matching refs:hnd
78 CURL *hnd; member
201 CURL *hnd; in setup() local
203 hnd = i->hnd = curl_easy_init(); in setup()
232 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); in setup()
235 curl_easy_setopt(hnd, CURLOPT_READFUNCTION, read_callback); in setup()
237 curl_easy_setopt(hnd, CURLOPT_READDATA, i); in setup()
239 curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, uploadsize); in setup()
242 curl_easy_setopt(hnd, CURLOPT_URL, url); in setup()
245 curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L); in setup()
248 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in setup()
249 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace); in setup()
250 curl_easy_setopt(hnd, CURLOPT_DEBUGDATA, i); in setup()
253 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in setup()
256 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L); in setup()
257 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L); in setup()
261 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L); in setup()
298 curl_multi_add_handle(multi_handle, trans[i].hnd); in main()
321 curl_multi_remove_handle(multi_handle, trans[i].hnd); in main()
322 curl_easy_cleanup(trans[i].hnd); in main()