Lines Matching refs:curl_easy_setopt

190       curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world");
191 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
192 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc);
194 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
195 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1);
196 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT);
198 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
200 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
201 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT);
205 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1);
241 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world");
242 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
243 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc);
245 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
246 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1);
247 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT);
249 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
251 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
252 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT);
256 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1);
309 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:1082/hello_world");
310 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer);
311 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc);
313 curl_easy_setopt (c, CURLOPT_HTTPPOST, pd);
314 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1);
315 curl_easy_setopt (c, CURLOPT_TIMEOUT, 150L);
317 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
319 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
320 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT, 15L);
324 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1);