"ftp://example.com/old-server/file.txt"); curl_easy_setopt(curl, CURLOPT_FTPPORT, "-"); res = curl_easy_perform(curl); curl_easy_cleanup(curl); } } Availability
The following code doesn't work: curl_easy_setopt(easy_handle, CURLOPT_PROXY, "2a00:fac0:a000::7:13"); curl_easy_setopt(easy_handle, CURLOPT_PROXYPORT, 8080L); url.c:parse_proxy sets the proxy name to "2a00" and overrides the port with 0...
I did this Started a DNS server on localhost:5353 and ran curl --dns-servers 127.0.0.1:5353 www.example.com The documentation indicated that port numbers are passed through to c-ares; however, I believe that this is not the case. I expec...