From 746f8aed86a990a6a8277cd2596f83166a73d718 Mon Sep 17 00:00:00 2001 From: Spencer Baugh Date: Sun, 14 Jan 2018 21:20:22 -0500 Subject: remote_store: register for NIX_REMOTE=unix://path This allows overriding the socket path so the daemon may be listening at an arbitrary Unix domain socket location. Fixes #1800 --- src/libstore/remote-store.hh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/libstore/remote-store.hh') diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh index 30c6beae6ff2..7f36e206416b 100644 --- a/src/libstore/remote-store.hh +++ b/src/libstore/remote-store.hh @@ -134,6 +134,7 @@ class UDSRemoteStore : public LocalFSStore, public RemoteStore public: UDSRemoteStore(const Params & params); + UDSRemoteStore(std::string path, const Params & params); std::string getUri() override; @@ -145,6 +146,7 @@ private: }; ref openConnection() override; + std::experimental::optional path; }; -- cgit 1.4.1