Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
93 CURL *curl;
101 curl = curl_easy_init();
102 if(!curl) {
109 test_setopt(curl, CURLOPT_URL, URL);
112 test_setopt(curl, CURLOPT_CERTINFO, 1L);
115 test_setopt(curl, CURLOPT_WRITEFUNCTION, wrfu);
118 test_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
119 test_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
122 res = curl_easy_perform(curl);
126 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &cert_info);
137 curl_easy_cleanup(curl);