Lines Matching refs:easy
147 CURL *easy;
169 easy = curl_easy_init();
170 if(!easy) {
174 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L);
175 curl_easy_setopt(easy, CURLOPT_DEBUGFUNCTION, debug_cb);
176 curl_easy_setopt(easy, CURLOPT_URL, url);
177 curl_easy_setopt(easy, CURLOPT_NOSIGNAL, 1L);
178 curl_easy_setopt(easy, CURLOPT_AUTOREFERER, 1L);
179 curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
180 curl_easy_setopt(easy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
181 curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb);
182 curl_easy_setopt(easy, CURLOPT_WRITEDATA, NULL);
183 curl_easy_setopt(easy, CURLOPT_HTTPGET, 1L);
186 curl_easy_setopt(easy, CURLOPT_RANGE, range);
188 mc = curl_multi_add_handle(multi, easy);