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()
100 easy_setopt(curl, CURLOPT_POSTFIELDSIZE, strlen(UPLOADTHIS)); in test()
102 easy_setopt(curl, CURLOPT_POST, 1L); in test()
105 easy_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); in test()
107 easy_setopt(curl, CURLOPT_PROXY, libtest_arg2); in test()
108 easy_setopt(curl, CURLOPT_PROXYUSERPWD, libtest_arg3); in test()
109 easy_setopt(curl, CURLOPT_PROXYAUTH, in test()
114 multi_add_handle(m, curl); in test()
152 curl_multi_remove_handle(m, curl); in test()
154 curl_easy_cleanup(curl); in test()