Lines Matching defs:hnd
148 CURL *hnd;
150 hnd = t->easy = curl_easy_init();
162 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, t->out);
165 curl_easy_setopt(hnd, CURLOPT_URL, "https://localhost:8443/index.html");
168 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
169 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace);
170 curl_easy_setopt(hnd, CURLOPT_DEBUGDATA, t);
173 curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 100000L);
176 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
180 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L);