Lines Matching refs:hnd
55 CURL *hnd; member
179 CURL *hnd; in setup() local
181 hnd = i->hnd = curl_easy_init(); in setup()
210 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); in setup()
213 curl_easy_setopt(hnd, CURLOPT_READFUNCTION, read_callback); in setup()
215 curl_easy_setopt(hnd, CURLOPT_READDATA, i); in setup()
217 curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, uploadsize); in setup()
220 curl_easy_setopt(hnd, CURLOPT_URL, url); in setup()
223 curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L); in setup()
226 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in setup()
227 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace); in setup()
228 curl_easy_setopt(hnd, CURLOPT_DEBUGDATA, i); in setup()
231 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in setup()
234 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L); in setup()
235 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L); in setup()
239 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L); in setup()
276 curl_multi_add_handle(multi_handle, trans[i].hnd); in main()
299 curl_multi_remove_handle(multi_handle, trans[i].hnd); in main()
300 curl_easy_cleanup(trans[i].hnd); in main()