Lines Matching refs:curl
89 CURL *curl; in test() local
100 curl = curl_easy_init(); in test()
101 if(!curl) { in test()
110 curl_easy_cleanup(curl); in test()
116 test_setopt(curl, CURLOPT_URL, URL); in test()
119 test_setopt(curl, CURLOPT_POST, 1L); in test()
123 test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); in test()
127 test_setopt(curl, CURLOPT_READFUNCTION, read_callback); in test()
130 test_setopt(curl, CURLOPT_READDATA, &pooh); in test()
133 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
136 test_setopt(curl, CURLOPT_HEADER, 1L); in test()
139 test_setopt(curl, CURLOPT_HTTPHEADER, slist); in test()
141 test_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST); in test()
142 test_setopt(curl, CURLOPT_USERPWD, "foo:bar"); in test()
145 test_setopt(curl, CURLOPT_NOPROGRESS, 0L); in test()
146 test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback); in test()
149 res = curl_easy_perform(curl); in test()
158 curl_easy_cleanup(curl); in test()