Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
43 CURL *curl;
50 curl = curl_easy_init();
51 if(!curl) {
57 test_setopt(curl, CURLOPT_URL, URL);
58 test_setopt(curl, CURLOPT_CONNECT_ONLY, 1L);
59 test_setopt(curl, CURLOPT_VERBOSE, 1L);
61 res = curl_easy_perform(curl);
70 res = curl_easy_send(curl, request, strlen(request), &iolen);
78 res = curl_easy_recv(curl, buf, sizeof(buf), &iolen);
95 curl_easy_cleanup(curl);