2015-04-09 12:12:50 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.hh"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct DownloadResult
|
|
|
|
{
|
|
|
|
bool cached;
|
|
|
|
string data, etag;
|
|
|
|
};
|
|
|
|
|
|
|
|
DownloadResult downloadFile(string url, string expectedETag = "");
|
|
|
|
|
2015-04-09 12:49:13 +02:00
|
|
|
MakeError(DownloadError, Error)
|
|
|
|
|
2015-04-09 12:12:50 +02:00
|
|
|
}
|