From dcd6405bb3c54500b32cdc0c8ce652f5942e4c46 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 2 Dec 2015 10:29:29 +0000 Subject: Specify no EPRT on FTP downloads. Fix request to CURL when not using PASV. Fix incorrect return value from ftp_ls_data. Tidy Dolby fetching code a bit. Fix sensitivity of Dolby download button (#769). --- src/lib/internet.cc | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'src/lib/internet.cc') diff --git a/src/lib/internet.cc b/src/lib/internet.cc index 2b1e90ca7..1aaeccd36 100644 --- a/src/lib/internet.cc +++ b/src/lib/internet.cc @@ -49,7 +49,7 @@ get_from_zip_url_data (void* buffer, size_t size, size_t nmemb, void* stream) * @param load Function passed a (temporary) filesystem path of the unpacked file. */ optional -get_from_zip_url (string url, string file, function load) +get_from_zip_url (string url, string file, bool pasv, function load) { /* Download the ZIP file to temp_zip */ CURL* curl = curl_easy_init (); @@ -60,6 +60,11 @@ get_from_zip_url (string url, string file, function (); } - static size_t ftp_ls_data (void* buffer, size_t size, size_t nmemb, void* data) { @@ -108,7 +112,7 @@ ftp_ls_data (void* buffer, size_t size, size_t nmemb, void* data) for (size_t i = 0; i < (size * nmemb); ++i) { *s += b[i]; } - return nmemb; + return size * nmemb; } list @@ -133,8 +137,10 @@ ftp_ls (string url, bool pasv) curl_easy_setopt (curl, CURLOPT_WRITEDATA, &ls_raw); curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ftp_ls_data); curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0); + curl_easy_setopt (curl, CURLOPT_FTP_USE_EPRT, 0); + curl_easy_setopt (curl, CURLOPT_VERBOSE, 1); if (!pasv) { - curl_easy_setopt (curl, CURLOPT_FTPPORT, ""); + curl_easy_setopt (curl, CURLOPT_FTPPORT, "-"); } CURLcode const r = curl_easy_perform (curl); if (r != CURLE_OK) { -- cgit v1.2.3