Lines Matching refs:hnd
110 CURL *hnd;
123 hnd = curl_easy_init();
124 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
125 curl_easy_setopt(hnd, CURLOPT_URL, "http://%HOSTIP:%HTTPPORT/we/want/1404");
126 mime1 = curl_mime_init(hnd);
131 mime2 = curl_mime_init(hnd);
145 curl_easy_setopt(hnd, CURLOPT_MIMEPOST, mime1);
146 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "stripped");
147 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L);
148 curl_easy_setopt(hnd, CURLOPT_HTTP09_ALLOWED, 1L);
149 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
150 curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
172 ret = curl_easy_perform(hnd);
174 curl_easy_cleanup(hnd);
175 hnd = NULL;