Lines Matching refs:hnd
53 static int hnd2num(CURL *hnd) in hnd2num() argument
57 if(curl_hnd[i] == hnd) in hnd2num()
172 CURL *hnd; member
185 static void setup(CURL *hnd, int num, const char *upload) in setup() argument
203 indata[num].hnd = hnd; in setup()
206 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); in setup()
209 curl_easy_setopt(hnd, CURLOPT_READFUNCTION, read_callback); in setup()
211 curl_easy_setopt(hnd, CURLOPT_READDATA, &indata[num]); in setup()
213 curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, uploadsize); in setup()
216 curl_easy_setopt(hnd, CURLOPT_URL, url); in setup()
219 curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L); in setup()
222 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in setup()
223 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace); in setup()
226 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in setup()
229 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L); in setup()
230 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L); in setup()
234 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L); in setup()
237 curl_hnd[num] = hnd; in setup()