about summary refs log tree commit diff
path: root/src/libstore/ssh-store.hh
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2016-09-12T12·03-0400
committerShea Levy <shea@shealevy.com>2016-09-12T12·03-0400
commitab31f9986c68f575d902582ed3e176b777cb49e1 (patch)
treea82953257ecca95de16417bbd736054e03caf9ea /src/libstore/ssh-store.hh
parent584f8a62de117ade154ec8208d939dc194782936 (diff)
Inline ssh-store.hh into ssh-store.cc
Diffstat (limited to 'src/libstore/ssh-store.hh')
-rw-r--r--src/libstore/ssh-store.hh40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/libstore/ssh-store.hh b/src/libstore/ssh-store.hh
deleted file mode 100644
index 44ece559853b..000000000000
--- a/src/libstore/ssh-store.hh
+++ /dev/null
@@ -1,40 +0,0 @@
-#pragma once
-
-#include "store-api.hh"
-#include "remote-store.hh"
-
-namespace nix {
-
-class SSHStore : public RemoteStore
-{
-public:
-
-    SSHStore(string uri, const Params & params, size_t maxConnections = std::numeric_limits<size_t>::max());
-
-    std::string getUri() override;
-
-    void narFromPath(const Path & path, Sink & sink) override;
-
-    ref<FSAccessor> getFSAccessor() override;
-
-private:
-
-    struct Connection : RemoteStore::Connection
-    {
-        Pid sshPid;
-        AutoCloseFD out;
-        AutoCloseFD in;
-    };
-
-    ref<RemoteStore::Connection> openConnection() override;
-
-    AutoDelete tmpDir;
-
-    Path socketPath;
-
-    Pid sshMaster;
-
-    string uri;
-};
-
-}