Lines Matching refs:hnd
57 CURL *hnd;
59 hnd = curl_easy_init();
60 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
61 curl_easy_setopt(hnd, CURLOPT_URL, "pop3://%HOSTIP:%POP3PORT/1407");
62 curl_easy_setopt(hnd, CURLOPT_HEADER, 1L);
63 curl_easy_setopt(hnd, CURLOPT_DIRLISTONLY, 1L);
64 curl_easy_setopt(hnd, CURLOPT_USERPWD, "user:secret");
65 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
66 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
88 ret = curl_easy_perform(hnd);
90 curl_easy_cleanup(hnd);
91 hnd = NULL;