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