Lines Matching refs:ntlm_easy
37 static CURL *ntlm_easy[MAX_EASY_HANDLES]; variable
43 ssize_t idx = ((CURL **) data) - ntlm_easy; in callback()
54 code = curl_easy_getinfo(ntlm_easy[idx], CURLINFO_LASTSOCKET, &longdata); in callback()
111 ntlm_easy[i] = NULL; in test()
134 easy_init(ntlm_easy[num_handles]); in test()
138 easy_setopt(ntlm_easy[num_handles], CURLOPT_HTTPAUTH, CURLAUTH_NTLM); in test()
142 easy_setopt(ntlm_easy[num_handles], CURLOPT_HTTPAUTH, CURLAUTH_BASIC); in test()
144 easy_setopt(ntlm_easy[num_handles], CURLOPT_FRESH_CONNECT, 1L); in test()
145 easy_setopt(ntlm_easy[num_handles], CURLOPT_URL, full_url); in test()
146 easy_setopt(ntlm_easy[num_handles], CURLOPT_VERBOSE, 1L); in test()
147 easy_setopt(ntlm_easy[num_handles], CURLOPT_HTTPGET, 1L); in test()
148 easy_setopt(ntlm_easy[num_handles], CURLOPT_USERPWD, in test()
150 easy_setopt(ntlm_easy[num_handles], CURLOPT_WRITEFUNCTION, callback); in test()
151 easy_setopt(ntlm_easy[num_handles], CURLOPT_WRITEDATA, in test()
152 ntlm_easy + num_handles); in test()
153 easy_setopt(ntlm_easy[num_handles], CURLOPT_HEADER, 1L); in test()
155 multi_add_handle(multi, ntlm_easy[num_handles]); in test()
231 curl_multi_remove_handle(multi, ntlm_easy[i]); in test()
232 curl_easy_cleanup(ntlm_easy[i]); in test()