Lines Matching refs:hnd
145 CURL *hnd; in setup() local
147 hnd = t->easy = curl_easy_init(); in setup()
154 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, t->out); in setup()
157 curl_easy_setopt(hnd, CURLOPT_URL, "https://localhost:8443/index.html"); in setup()
160 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in setup()
161 curl_easy_setopt(hnd, CURLOPT_DEBUGFUNCTION, my_trace); in setup()
162 curl_easy_setopt(hnd, CURLOPT_DEBUGDATA, t); in setup()
165 curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); in setup()
168 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L); in setup()
169 curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L); in setup()
173 curl_easy_setopt(hnd, CURLOPT_PIPEWAIT, 1L); in setup()