Lines Matching refs:i
41 int i; in test() local
68 for(i = 0; i < NUM_HANDLES; i++) { in test()
70 easy_init(curl[i]); in test()
74 port, i + 1); in test()
76 easy_setopt(curl[i], CURLOPT_URL, target_url); in test()
78 easy_setopt(curl[i], CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_3ONLY); in test()
79 easy_setopt(curl[i], CURLOPT_CONNECTTIMEOUT_MS, (long)5000); in test()
80 easy_setopt(curl[i], CURLOPT_CAINFO, "./certs/EdelCurlRoot-ca.cacert"); in test()
82 easy_setopt(curl[i], CURLOPT_PIPEWAIT, 1L); in test()
86 test_setopt(curl[i], CURLOPT_DEBUGDATA, &libtest_debug_config); in test()
87 easy_setopt(curl[i], CURLOPT_DEBUGFUNCTION, libtest_debug_cb); in test()
88 easy_setopt(curl[i], CURLOPT_VERBOSE, 1L); in test()
90 easy_setopt(curl[i], CURLOPT_HEADER, 1L); in test()
92 easy_setopt(curl[i], CURLOPT_RESOLVE, slist); in test()
97 for(i = 0; i < NUM_HANDLES; i++) { in test()
99 multi_add_handle(m, curl[i]); in test()
135 for(i = 0; i < NUM_HANDLES; i++) { in test()
136 curl_multi_remove_handle(m, curl[i]); in test()
137 curl_easy_cleanup(curl[i]); in test()