Lines Matching refs:curl
79 CURL *curl = NULL; in test() local
88 easy_init(curl); in test()
90 easy_setopt(curl, CURLOPT_URL, URL); in test()
91 easy_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
92 easy_setopt(curl, CURLOPT_HEADER, 1L); in test()
95 easy_setopt(curl, CURLOPT_IOCTLFUNCTION, ioctlcallback); in test()
96 easy_setopt(curl, CURLOPT_IOCTLDATA, &counter); in test()
97 easy_setopt(curl, CURLOPT_READFUNCTION, readcallback); in test()
98 easy_setopt(curl, CURLOPT_READDATA, &counter); in test()
101 easy_setopt(curl, CURLOPT_POSTFIELDSIZE, (long)strlen(UPLOADTHIS)); in test()
103 easy_setopt(curl, CURLOPT_POST, 1L); in test()
106 easy_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); in test()
108 easy_setopt(curl, CURLOPT_PROXY, libtest_arg2); in test()
109 easy_setopt(curl, CURLOPT_PROXYUSERPWD, libtest_arg3); in test()
110 easy_setopt(curl, CURLOPT_PROXYAUTH, in test()
115 multi_add_handle(m, curl); in test()
153 curl_multi_remove_handle(m, curl); in test()
155 curl_easy_cleanup(curl); in test()