Lines Matching refs:hnd
68 CURL *hnd;
70 hnd = curl_easy_init();
71 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
72 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/%TESTNUMBER");
73 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "stripped");
74 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
75 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
77 curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
79 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
100 ret = curl_easy_perform(hnd);
102 curl_easy_cleanup(hnd);
103 hnd = NULL;