Lines Matching refs:hnd
65 CURL *hnd;
67 hnd = curl_easy_init();
68 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/1400");
69 curl_easy_setopt(hnd, CURLOPT_HEADER, 1L);
70 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "stripped");
71 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
72 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
73 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
95 ret = curl_easy_perform(hnd);
97 curl_easy_cleanup(hnd);
98 hnd = NULL;