about summary refs log tree commit diff
path: root/src/libstore/s3.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2018-12-09T11·59+0100
committerGitHub <noreply@github.com>2018-12-09T11·59+0100
commit18ecd087ae772885fb223e1771b93a6b0eee1a31 (patch)
treed461bc85040bbf540e8023bc1f5c58d18c733fd6 /src/libstore/s3.hh
parent05f0543a1761357f4790e388ac74c8e284b9bb3e (diff)
parent77cc632186d6a0bb63c1e16238f628857bc6e7bd (diff)
Merge pull request #2566 from LnL7/s3-scheme
s3: make scheme configurable
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 95d612b66335..ef5f23d0f253 100644
--- a/src/libstore/s3.hh
+++ b/src/libstore/s3.hh
@@ -14,9 +14,9 @@ struct S3Helper
     ref<Aws::Client::ClientConfiguration> config;
     ref<Aws::S3::S3Client> client;
 
-    S3Helper(const std::string & profile, const std::string & region, const std::string & endpoint);
+    S3Helper(const std::string & profile, const std::string & region, const std::string & scheme, const std::string & endpoint);
 
-    ref<Aws::Client::ClientConfiguration> makeConfig(const std::string & region, const std::string & endpoint);
+    ref<Aws::Client::ClientConfiguration> makeConfig(const std::string & region, const std::string & scheme, const std::string & endpoint);
 
     struct DownloadResult
     {