Lines Matching refs:hnd
32 CURL *hnd; in test() local
35 hnd = curl_easy_init(); in test()
36 curl_easy_setopt(hnd, CURLOPT_URL, URL); in test()
37 curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L); in test()
38 curl_easy_setopt(hnd, CURLOPT_HEADER, 1L); in test()
39 curl_easy_setopt(hnd, CURLOPT_USERPWD, "testuser:testpass"); in test()
40 curl_easy_setopt(hnd, CURLOPT_USERAGENT, "lib1568"); in test()
41 curl_easy_setopt(hnd, CURLOPT_HTTPAUTH, (long)CURLAUTH_DIGEST); in test()
42 curl_easy_setopt(hnd, CURLOPT_MAXREDIRS, 50L); in test()
43 curl_easy_setopt(hnd, CURLOPT_PORT, strtol(libtest_arg2, NULL, 10)); in test()
45 ret = curl_easy_perform(hnd); in test()
47 curl_easy_cleanup(hnd); in test()
48 hnd = NULL; in test()