// this file is under GNU General Public License 3.0 // see LICENSE.txt #include "downloadclient.hh" #include #include namespace pEp { namespace UpdateClient { string update(product p, PublicKey update_key) { UpdateStream us { UpdateDevice(p) }; try { us->open(update_key); } catch (exception&) { } if (us->filename() == "") throw DownloadError(); return us->filename(); } string update(product p, string keyfile) { PublicKey update_key = load_key(keyfile); return update(p, update_key); } } }