Lines Matching defs:hnd
142 static int setup(CURL *hnd, const char *url, struct transfer *t)
144 curl_easy_setopt(hnd, CURLOPT_URL, url);
145 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
146 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L);
147 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L);
149 curl_easy_setopt(hnd, CURLOPT_WRITEFUNCTION, my_write_cb);
150 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, t);
154 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
155 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace);
160 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L);