Searched refs:http_handle (Results 1 - 4 of 4) sorted by relevance
/third_party/curl/tests/libtest/ |
H A D | lib560.c | 44 CURL *http_handle = NULL; in test() local 56 easy_init(http_handle); in test() 59 easy_setopt(http_handle, CURLOPT_URL, URL); in test() 60 easy_setopt(http_handle, CURLOPT_HEADER, 1L); in test() 61 easy_setopt(http_handle, CURLOPT_SSL_VERIFYPEER, 0L); in test() 62 easy_setopt(http_handle, CURLOPT_SSL_VERIFYHOST, 0L); in test() 68 multi_add_handle(multi_handle, http_handle); in test() 111 curl_easy_cleanup(http_handle); in test()
|
/third_party/curl/docs/examples/ |
H A D | multi-single.c | 44 CURL *http_handle; in main() local 50 http_handle = curl_easy_init(); in main() 53 curl_easy_setopt(http_handle, CURLOPT_URL, "https://www.example.com/"); in main() 59 curl_multi_add_handle(multi_handle, http_handle); in main() 75 curl_multi_remove_handle(multi_handle, http_handle); in main() 77 curl_easy_cleanup(http_handle); in main()
|
H A D | multi-double.c | 43 CURL *http_handle; in main() local 49 http_handle = curl_easy_init(); in main() 53 curl_easy_setopt(http_handle, CURLOPT_URL, "https://www.example.com/"); in main() 62 curl_multi_add_handle(multi_handle, http_handle); in main() 88 curl_multi_remove_handle(multi_handle, http_handle); in main() 93 curl_easy_cleanup(http_handle); in main()
|
H A D | multi-debugcallback.c | 129 CURL *http_handle; in main() local 134 http_handle = curl_easy_init(); in main() 137 curl_easy_setopt(http_handle, CURLOPT_URL, "https://www.example.com/"); in main() 139 curl_easy_setopt(http_handle, CURLOPT_DEBUGFUNCTION, my_trace); in main() 140 curl_easy_setopt(http_handle, CURLOPT_VERBOSE, 1L); in main() 146 curl_multi_add_handle(multi_handle, http_handle); in main() 162 curl_easy_cleanup(http_handle); in main()
|
Completed in 2 milliseconds