Lines Matching refs:curl_easy_setopt
208 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out); in setup()
211 curl_easy_setopt(hnd, CURLOPT_READFUNCTION, read_callback); in setup()
213 curl_easy_setopt(hnd, CURLOPT_READDATA, i); in setup()
215 curl_easy_setopt(hnd, CURLOPT_INFILESIZE_LARGE, uploadsize); in setup()
218 curl_easy_setopt(hnd, CURLOPT_URL, url); in setup()
221 curl_easy_setopt(hnd, CURLOPT_UPLOAD, 1L); in setup()
224 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in setup()
225 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace); in setup()
226 curl_easy_setopt(hnd, CURLOPT_DEBUGDATA, i); in setup()
229 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in setup()
232 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L); in setup()
233 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L); in setup()
237 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L); in setup()