aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/remote-store.cc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-09-01 22:21:42 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-09-01 23:53:26 +0200
commit8fb8c26b6d07d2aadf9cf85bda159c815996be89 (patch)
treec7aa813a7279895ddc2609cf26ab3faf36043f3a /src/libstore/remote-store.cc
parent27a01d92c2be3e6c1be23f96d24c3d3358489a87 (diff)
Add an 'optimiseStore' remote procedure call.
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r--src/libstore/remote-store.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index 8ef673783..a0e9f2241 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -579,6 +579,13 @@ void RemoteStore::clearFailedPaths(const PathSet & paths)
readInt(from);
}
+void RemoteStore::optimiseStore()
+{
+ openConnection();
+ writeInt(wopOptimiseStore, to);
+ processStderr();
+ readInt(from);
+}
void RemoteStore::processStderr(Sink * sink, Source * source)
{