aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/http-binary-cache-store.cc
diff options
context:
space:
mode:
authorNikola Knezevic <nikola@knezevic.ch>2020-04-06 13:30:45 +0200
committerNikola Knezevic <nikola@knezevic.ch>2020-04-08 22:26:57 +0200
commit65ef57e0cbded52652510355304303a7b71586af (patch)
tree45c00bd01bc4060c34b3ee488de19e639ad843a5 /src/libstore/http-binary-cache-store.cc
parent5449ff7d8aaa8dce6d6f7e47c89e04d914f16cff (diff)
DownloadRequest -> DataTransferRequest
Diffstat (limited to 'src/libstore/http-binary-cache-store.cc')
-rw-r--r--src/libstore/http-binary-cache-store.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc
index 011794c62..e152e7524 100644
--- a/src/libstore/http-binary-cache-store.cc
+++ b/src/libstore/http-binary-cache-store.cc
@@ -85,7 +85,7 @@ protected:
checkEnabled();
try {
- DownloadRequest request(cacheUri + "/" + path);
+ DataTransferRequest request(cacheUri + "/" + path);
request.head = true;
getDownloader()->download(request);
return true;
@@ -103,7 +103,7 @@ protected:
const std::string & data,
const std::string & mimeType) override
{
- auto req = DownloadRequest(cacheUri + "/" + path);
+ auto req = DataTransferRequest(cacheUri + "/" + path);
req.data = std::make_shared<string>(data); // FIXME: inefficient
req.mimeType = mimeType;
try {
@@ -113,9 +113,9 @@ protected:
}
}
- DownloadRequest makeRequest(const std::string & path)
+ DataTransferRequest makeRequest(const std::string & path)
{
- DownloadRequest request(cacheUri + "/" + path);
+ DataTransferRequest request(cacheUri + "/" + path);
return request;
}