tvl-depot/src/libstore/download.hh
Eelco Dolstra fa7cd5369b StoreAPI -> Store
Calling a class an API is a bit redundant...
2016-02-04 14:48:42 +01:00

32 lines
482 B
C++

#pragma once
#include "types.hh"
#include <string>
namespace nix {
struct DownloadOptions
{
string expectedETag;
bool verifyTLS{true};
bool forceProgress{false};
};
struct DownloadResult
{
bool cached;
string data, etag;
};
class Store;
DownloadResult downloadFile(string url, const DownloadOptions & options);
Path downloadFileCached(ref<Store> store, const string & url, bool unpack);
MakeError(DownloadError, Error)
bool isUri(const string & s);
}