Lines Matching refs:curl
89 CURL *curl; in test() local
100 if ((curl = curl_easy_init()) == NULL) { in test()
109 curl_easy_cleanup(curl); in test()
115 test_setopt(curl, CURLOPT_URL, URL); in test()
118 test_setopt(curl, CURLOPT_POST, 1L); in test()
122 test_setopt(curl, CURLOPT_TRANSFERTEXT, 1L); in test()
126 test_setopt(curl, CURLOPT_READFUNCTION, read_callback); in test()
129 test_setopt(curl, CURLOPT_READDATA, &pooh); in test()
132 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
135 test_setopt(curl, CURLOPT_HEADER, 1L); in test()
138 test_setopt(curl, CURLOPT_HTTPHEADER, slist); in test()
140 test_setopt(curl, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST); in test()
141 test_setopt(curl, CURLOPT_USERPWD, "foo:bar"); in test()
144 test_setopt(curl, CURLOPT_NOPROGRESS, 0L); in test()
145 test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback); in test()
148 res = curl_easy_perform(curl); in test()
157 curl_easy_cleanup(curl); in test()