aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/s3.hh
diff options
context:
space:
mode:
authorNikola Knezevic <nikola@knezevic.ch>2020-04-06 15:18:51 +0200
committerNikola Knezevic <nikola@knezevic.ch>2020-04-08 22:26:57 +0200
commit142ed7fe45a2b1d566e4401b3974cb29b8944fc6 (patch)
tree54f3857ce29ea033223a45be9a1435f62feac3a7 /src/libstore/s3.hh
parente5cc53beec62a36ebdc219e26b87f501ddb84a4f (diff)
DownloadResult -> DataTransferResult
Diffstat (limited to 'src/libstore/s3.hh')
-rw-r--r--src/libstore/s3.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/s3.hh b/src/libstore/s3.hh
index ef5f23d0f..d7d309243 100644
--- a/src/libstore/s3.hh
+++ b/src/libstore/s3.hh
@@ -18,13 +18,13 @@ struct S3Helper
ref<Aws::Client::ClientConfiguration> makeConfig(const std::string & region, const std::string & scheme, const std::string & endpoint);
- struct DownloadResult
+ struct DataTransferResult
{
std::shared_ptr<std::string> data;
unsigned int durationMs;
};
- DownloadResult getObject(
+ DataTransferResult getObject(
const std::string & bucketName, const std::string & key);
};