Home | History | Annotate | Download | only in libtest

Lines Matching refs:CURL

12  * are also available at https://curl.haxx.se/docs/copyright.html.
29 CURL *curl;
38 if((curl = curl_easy_init()) == NULL) {
45 * Begin with cURL set to use a single CWD to the URL's directory.
47 test_setopt(curl, CURLOPT_URL, URL);
48 test_setopt(curl, CURLOPT_VERBOSE, 1L);
49 test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_SINGLECWD);
51 res = curl_easy_perform(curl);
56 * QUOTE command, after which cURL will CWD to ftp_conn->entrypath and then
63 curl_easy_cleanup(curl);
71 curl_easy_cleanup(curl);
76 test_setopt(curl, CURLOPT_URL, newURL);
77 test_setopt(curl, CURLOPT_FTP_FILEMETHOD, (long) CURLFTPMETHOD_NOCWD);
78 test_setopt(curl, CURLOPT_QUOTE, slist);
80 res = curl_easy_perform(curl);
86 curl_easy_cleanup(curl);