Searched refs:http_handle (Results 1 – 4 of 4) sorted by relevance
/third_party/curl/tests/libtest/ |
D | lib560.c | 42 CURL *http_handle = NULL; in test() local 54 easy_init(http_handle); in test() 57 easy_setopt(http_handle, CURLOPT_URL, URL); in test() 58 easy_setopt(http_handle, CURLOPT_HEADER, 1L); in test() 59 easy_setopt(http_handle, CURLOPT_SSL_VERIFYPEER, 0L); in test() 60 easy_setopt(http_handle, CURLOPT_SSL_VERIFYHOST, 0L); in test() 66 multi_add_handle(multi_handle, http_handle); in test() 109 curl_easy_cleanup(http_handle); in test()
|
/third_party/curl/docs/examples/ |
D | multi-single.c | 51 CURL *http_handle; in main() local 57 http_handle = curl_easy_init(); in main() 60 curl_easy_setopt(http_handle, CURLOPT_URL, "https://www.example.com/"); in main() 66 curl_multi_add_handle(multi_handle, http_handle); in main() 82 curl_multi_remove_handle(multi_handle, http_handle); in main() 84 curl_easy_cleanup(http_handle); in main()
|
D | multi-double.c | 41 CURL *http_handle; in main() local 47 http_handle = curl_easy_init(); in main() 51 curl_easy_setopt(http_handle, CURLOPT_URL, "https://www.example.com/"); in main() 60 curl_multi_add_handle(multi_handle, http_handle); in main() 86 curl_multi_remove_handle(multi_handle, http_handle); in main() 91 curl_easy_cleanup(http_handle); in main()
|
D | multi-debugcallback.c | 131 CURL *http_handle; in main() local 136 http_handle = curl_easy_init(); in main() 139 curl_easy_setopt(http_handle, CURLOPT_URL, "https://www.example.com/"); in main() 141 curl_easy_setopt(http_handle, CURLOPT_DEBUGFUNCTION, my_trace); in main() 142 curl_easy_setopt(http_handle, CURLOPT_VERBOSE, 1L); in main() 148 curl_multi_add_handle(multi_handle, http_handle); in main() 164 curl_easy_cleanup(http_handle); in main()
|