Lines Matching refs:hnd
74 CURL *hnd;
88 hnd = curl_easy_init();
89 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
90 curl_easy_setopt(hnd, CURLOPT_URL, "ftp://%HOSTIP:%FTPPORT/%TESTNUMBER");
91 curl_easy_setopt(hnd, CURLOPT_QUOTE, slist1);
92 curl_easy_setopt(hnd, CURLOPT_POSTQUOTE, slist2);
93 curl_easy_setopt(hnd, CURLOPT_PREQUOTE, slist3);
94 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
95 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
96 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
117 ret = curl_easy_perform(hnd);
119 curl_easy_cleanup(hnd);
120 hnd = NULL;