Lines Matching refs:hnd
51 CURL *hnd; member
175 CURL *hnd; in setup() local
177 hnd = i->hnd = curl_easy_init(); in setup()
191 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); in setup()
194 curl_easy_setopt(hnd, CURLOPT_READFUNCTION, read_callback); in setup()
196 curl_easy_setopt(hnd, CURLOPT_READDATA, i); in setup()
198 curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, uploadsize); in setup()
201 curl_easy_setopt(hnd, CURLOPT_URL, url); in setup()
204 curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L); in setup()
207 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in setup()
208 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace); in setup()
209 curl_easy_setopt(hnd, CURLOPT_DEBUGDATA, i); in setup()
212 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in setup()
215 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L); in setup()
216 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L); in setup()
220 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L); in setup()
257 curl_multi_add_handle(multi_handle, trans[i].hnd); in main()
342 curl_multi_remove_handle(multi_handle, trans[i].hnd); in main()
343 curl_easy_cleanup(trans[i].hnd); in main()