Lines Matching refs:hnd
69 CURL *hnd;
71 hnd = curl_easy_init();
72 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
73 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/1400");
74 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "stripped");
75 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
76 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
77 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
99 ret = curl_easy_perform(hnd);
101 curl_easy_cleanup(hnd);
102 hnd = NULL;