Lines Matching refs:handle
47 CURL *handle; in main() local
58 handle = curl_easy_init(); in main()
59 if(!handle) { in main()
65 curl_easy_setopt(handle, CURLOPT_WILDCARDMATCH, 1L); in main()
68 curl_easy_setopt(handle, CURLOPT_CHUNK_BGN_FUNCTION, file_is_coming); in main()
71 curl_easy_setopt(handle, CURLOPT_CHUNK_END_FUNCTION, file_is_downloaded); in main()
74 curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, write_it); in main()
77 curl_easy_setopt(handle, CURLOPT_CHUNK_DATA, &data); in main()
78 curl_easy_setopt(handle, CURLOPT_WRITEDATA, &data); in main()
84 curl_easy_setopt(handle, CURLOPT_URL, argv[1]); in main()
86 curl_easy_setopt(handle, CURLOPT_URL, "ftp://example.com/test/*"); in main()
89 rc = curl_easy_perform(handle); in main()
91 curl_easy_cleanup(handle); in main()