Lines Matching refs:curl_easy_setopt
65 * All curl_easy_setopt() options are documented at:
66 * https://curl.haxx.se/libcurl/c/curl_easy_setopt.html
81 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
82 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/1401");
83 curl_easy_setopt(hnd, CURLOPT_USERPWD, "fake:user");
84 curl_easy_setopt(hnd, CURLOPT_HTTPAUTH, (long)CURLAUTH_BASIC);
85 curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, slist1);
86 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "MyUA");
87 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
88 curl_easy_setopt(hnd, CURLOPT_COOKIE, "chocolate=chip");
89 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
90 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
91 curl_easy_setopt(hnd, CURLOPT_PROTOCOLS, (long)CURLPROTO_FILE |