nix-gh/src/libstore/download.hh

30 lines
467 B
C++
Raw Normal View History

2015-04-09 12:12:50 +02:00
#pragma once
#include "types.hh"
#include <string>
namespace nix {
struct DownloadOptions
{
string expectedETag;
bool verifyTLS{true};
bool forceProgress{false};
};
2015-04-09 12:12:50 +02:00
struct DownloadResult
{
bool cached;
string data, etag;
};
DownloadResult downloadFile(string url, const DownloadOptions & options);
2015-04-09 12:12:50 +02:00
Path downloadFileCached(const string & url, bool unpack, string name = "");
MakeError(DownloadError, Error)
bool isUri(const string & s);
2015-04-09 12:12:50 +02:00
}