Lines Matching refs:hnd
61 CURL *hnd;
63 hnd = curl_easy_init();
64 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
65 curl_easy_setopt(hnd, CURLOPT_URL, "pop3://%HOSTIP:%POP3PORT/%TESTNUMBER");
66 curl_easy_setopt(hnd, CURLOPT_DIRLISTONLY, 1L);
67 curl_easy_setopt(hnd, CURLOPT_USERPWD, "user:secret");
68 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
69 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
70 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
91 ret = curl_easy_perform(hnd);
93 curl_easy_cleanup(hnd);
94 hnd = NULL;