Lines Matching refs:curl
35 CURL *curl; member
44 CURL *curl = myp->curl; in xferinfo() local
47 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &curtime); in xferinfo()
82 CURL *curl; in main() local
86 curl = curl_easy_init(); in main()
87 if(curl) { in main()
89 prog.curl = curl; in main()
91 curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/"); in main()
93 curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, older_progress); in main()
95 curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, &prog); in main()
108 curl_easy_setopt(curl, CURLOPT_XFERINFOFUNCTION, xferinfo); in main()
111 curl_easy_setopt(curl, CURLOPT_XFERINFODATA, &prog); in main()
114 curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); in main()
115 res = curl_easy_perform(curl); in main()
121 curl_easy_cleanup(curl); in main()