aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/ssh-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-02-07 20:47:45 +0100
committerEelco Dolstra <edolstra@gmail.com>2017-02-07 20:47:45 +0100
commit6f4682ad36c97355fbb7ba86a9ce265c22102055 (patch)
tree99b5fcd1f04f3ab95852e7ffea379b9bfbceeae8 /src/libstore/ssh-store.cc
parentcaa5793b4a74049ee37dd88eb1c5b785456ce40d (diff)
parentbfa41eb6714a7e7c3956389ee063e898bd1f37ff (diff)
Merge branch 'nix-copy-closure-c++' of https://github.com/shlevy/nix
Diffstat (limited to 'src/libstore/ssh-store.cc')
-rw-r--r--src/libstore/ssh-store.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/ssh-store.cc b/src/libstore/ssh-store.cc
index 1b44af07b..6f1862afa 100644
--- a/src/libstore/ssh-store.cc
+++ b/src/libstore/ssh-store.cc
@@ -41,6 +41,8 @@ private:
string host;
Path key;
+
+ bool compress;
};
SSHStore::SSHStore(string host, const Params & params, size_t maxConnections)
@@ -50,6 +52,7 @@ SSHStore::SSHStore(string host, const Params & params, size_t maxConnections)
, socketPath((Path) tmpDir + "/ssh.sock")
, host(std::move(host))
, key(get(params, "ssh-key", ""))
+ , compress(get(params, "compress", "") == "true")
{
/* open a connection and perform the handshake to verify all is well */
connections->get();