X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Finternet.cc;h=8721c1b73792254b705452e532172aa3d9f98a91;hb=dd0f6069a536f414c5b37c786bb36dfc7fdf3d20;hp=e0af49b6698e64c75148ec5ecfddee14e1c75969;hpb=6a92ad180163bf84aeedc5f955edc13557e6848c;p=dcpomatic.git diff --git a/src/lib/internet.cc b/src/lib/internet.cc index e0af49b66..8721c1b73 100644 --- a/src/lib/internet.cc +++ b/src/lib/internet.cc @@ -79,24 +79,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; @@ -153,6 +154,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()); }