Lines Matching refs:curl_easy_setopt
116 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); in testInternalGet()
117 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, ©Buffer); in testInternalGet()
118 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testInternalGet()
119 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testInternalGet()
120 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT); in testInternalGet()
121 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT); in testInternalGet()
123 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testInternalGet()
125 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testInternalGet()
129 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testInternalGet()
160 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); in testMultithreadedGet()
161 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, ©Buffer); in testMultithreadedGet()
162 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testMultithreadedGet()
163 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testMultithreadedGet()
164 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT); in testMultithreadedGet()
166 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testMultithreadedGet()
168 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testMultithreadedGet()
169 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT); in testMultithreadedGet()
173 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testMultithreadedGet()
221 curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); in testExternalGet()
222 curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, ©Buffer); in testExternalGet()
223 curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); in testExternalGet()
224 curl_easy_setopt (c, CURLOPT_FAILONERROR, 1); in testExternalGet()
226 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); in testExternalGet()
228 curl_easy_setopt (c, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); in testExternalGet()
229 curl_easy_setopt (c, CURLOPT_TIMEOUT_MS, CURL_TIMEOUT); in testExternalGet()
230 curl_easy_setopt (c, CURLOPT_CONNECTTIMEOUT_MS, CURL_TIMEOUT); in testExternalGet()
234 curl_easy_setopt (c, CURLOPT_NOSIGNAL, 1); in testExternalGet()