Lines Matching refs:curl
30 CURL *curl; member
39 CURL *curl = myp->curl; in xferinfo() local
42 curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &curtime); in xferinfo()
77 CURL *curl; in main() local
81 curl = curl_easy_init(); in main()
82 if(curl) { in main()
84 prog.curl = curl; in main()
86 curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/"); in main()
88 curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, older_progress); in main()
90 curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, &prog); in main()
103 curl_easy_setopt(curl, CURLOPT_XFERINFOFUNCTION, xferinfo); in main()
106 curl_easy_setopt(curl, CURLOPT_XFERINFODATA, &prog); in main()
109 curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0L); in main()
110 res = curl_easy_perform(curl); in main()
116 curl_easy_cleanup(curl); in main()