Lines Matching defs:handle
99 CURL *handle = NULL;
103 handle = curl_easy_init();
104 if(!handle) {
109 test_setopt(handle, CURLOPT_URL, URL);
110 test_setopt(handle, CURLOPT_WILDCARDMATCH, 1L);
111 test_setopt(handle, CURLOPT_CHUNK_BGN_FUNCTION, chunk_bgn);
112 test_setopt(handle, CURLOPT_CHUNK_END_FUNCTION, chunk_end);
113 test_setopt(handle, CURLOPT_CHUNK_DATA, &chunk_data);
115 res = curl_easy_perform(handle);
118 if(handle)
119 curl_easy_cleanup(handle);