Lines Matching refs:curl_easy_setopt
72 curl_easy_setopt(handle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2TLS); in make_handle()
73 curl_easy_setopt(handle, CURLOPT_URL, url); in make_handle()
79 curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, grow_buffer); in make_handle()
80 curl_easy_setopt(handle, CURLOPT_WRITEDATA, mem); in make_handle()
81 curl_easy_setopt(handle, CURLOPT_PRIVATE, mem); in make_handle()
84 curl_easy_setopt(handle, CURLOPT_ACCEPT_ENCODING, ""); in make_handle()
85 curl_easy_setopt(handle, CURLOPT_TIMEOUT, 5L); in make_handle()
86 curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1L); in make_handle()
87 curl_easy_setopt(handle, CURLOPT_MAXREDIRS, 10L); in make_handle()
88 curl_easy_setopt(handle, CURLOPT_CONNECTTIMEOUT, 2L); in make_handle()
89 curl_easy_setopt(handle, CURLOPT_COOKIEFILE, ""); in make_handle()
90 curl_easy_setopt(handle, CURLOPT_FILETIME, 1L); in make_handle()
91 curl_easy_setopt(handle, CURLOPT_USERAGENT, "mini crawler"); in make_handle()
92 curl_easy_setopt(handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); in make_handle()
93 curl_easy_setopt(handle, CURLOPT_UNRESTRICTED_AUTH, 1L); in make_handle()
94 curl_easy_setopt(handle, CURLOPT_PROXYAUTH, CURLAUTH_ANY); in make_handle()
95 curl_easy_setopt(handle, CURLOPT_EXPECT_100_TIMEOUT_MS, 0L); in make_handle()