Lines Matching refs:easy
144 CURL *easy; in main() local
166 easy = curl_easy_init(); in main()
167 if(!easy) { in main()
171 curl_easy_setopt(easy, CURLOPT_VERBOSE, 1L); in main()
172 curl_easy_setopt(easy, CURLOPT_DEBUGFUNCTION, debug_cb); in main()
173 curl_easy_setopt(easy, CURLOPT_URL, url); in main()
174 curl_easy_setopt(easy, CURLOPT_NOSIGNAL, 1L); in main()
175 curl_easy_setopt(easy, CURLOPT_AUTOREFERER, 1L); in main()
176 curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1L); in main()
177 curl_easy_setopt(easy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in main()
178 curl_easy_setopt(easy, CURLOPT_WRITEFUNCTION, write_cb); in main()
179 curl_easy_setopt(easy, CURLOPT_WRITEDATA, NULL); in main()
180 curl_easy_setopt(easy, CURLOPT_HTTPGET, 1L); in main()
186 curl_easy_setopt(easy, CURLOPT_RANGE, range); in main()
188 mc = curl_multi_add_handle(multi, easy); in main()