X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Finternet.cc;h=943363d1a67da48109f246ed3b900c5e23312135;hb=99cb06de7d7dde4c558d69bbce5fe09090bada27;hp=b993117bb5e93cc3b58e77264c7dcd3ce0b14f79;hpb=35a7379dda587add9d94dc4f710414a23976d6e7;p=dcpomatic.git diff --git a/src/lib/internet.cc b/src/lib/internet.cc index b993117bb..943363d1a 100644 --- a/src/lib/internet.cc +++ b/src/lib/internet.cc @@ -119,24 +119,25 @@ get_from_url (string url, bool pasv, bool skip_pasv_ip, ScopedTemporary& temp) return optional(); } + optional -get_from_url (string url, bool pasv, bool skip_pasv_ip, function load) +get_from_url (string url, bool pasv, bool skip_pasv_ip, function (boost::filesystem::path)> load) { ScopedTemporary temp; optional e = get_from_url (url, pasv, skip_pasv_ip, temp); if (e) { return e; } - load (temp.file()); - return optional(); + return load (temp.file()); } + /** @param url URL of ZIP file. * @param file Filename within ZIP file. * @param load Function passed a (temporary) filesystem path of the unpacked file. */ optional -get_from_zip_url (string url, string file, bool pasv, bool skip_pasv_ip, function load) +get_from_zip_url (string url, string file, bool pasv, bool skip_pasv_ip, function (boost::filesystem::path)> load) { /* Download the ZIP file to temp_zip */ ScopedTemporary temp_zip; @@ -193,6 +194,5 @@ get_from_zip_url (string url, string file, bool pasv, bool skip_pasv_ip, functio zip_close (zip); temp_cert.close (); - load (temp_cert.file ()); - return optional (); + return load (temp_cert.file()); }