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_DIRLISTONLY, 1L);
63 curl_easy_setopt(hnd, CURLOPT_USERPWD, "user:secret");
64 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
65 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
87 ret = curl_easy_perform(hnd);
89 curl_easy_cleanup(hnd);
90 hnd = NULL;