Lines Matching refs:hnd
67 CURL *hnd;
69 hnd = curl_easy_init();
70 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
71 curl_easy_setopt(hnd, CURLOPT_URL, "imap://%HOSTIP:%IMAPPORT/%TESTNUMBER/;MAILINDEX=1");
72 curl_easy_setopt(hnd, CURLOPT_USERPWD, "user:secret");
73 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
74 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
75 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
96 ret = curl_easy_perform(hnd);
98 curl_easy_cleanup(hnd);
99 hnd = NULL;