Lines Matching refs:multi_handle
216 CURLM *multi_handle;
227 multi_handle = curl_multi_init();
228 curl_multi_setopt(multi_handle, CURLMOPT_PIPELINING, CURLPIPE_MULTIPLEX);
229 curl_multi_setopt(multi_handle, CURLMOPT_PUSHFUNCTION, server_push_callback);
230 curl_multi_setopt(multi_handle, CURLMOPT_PUSHDATA, &transfers);
238 curl_multi_add_handle(multi_handle, easy);
241 CURLMcode mc = curl_multi_perform(multi_handle, &still_running);
245 mc = curl_multi_poll(multi_handle, NULL, 0, 1000, NULL);
257 m = curl_multi_info_read(multi_handle, &msgq);
261 curl_multi_remove_handle(multi_handle, e);
268 curl_multi_cleanup(multi_handle);