aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/worker-protocol.hh
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2020-07-02 11:14:04 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2020-07-02 11:14:04 -0400
commitfc2ab42e86e0b75250a666eeb5e25705a2ab83ef (patch)
treefc884cb1f6521f9f5a20843d6ce4dac1416fb2dd /src/libstore/worker-protocol.hh
parentd2e8b9ff0e8048d7b3914811b2d4bd535feac49d (diff)
parenta5b6e870fe9fb5ebf462c19963588d62f56d0f21 (diff)
Merge remote-tracking branch 'origin/master' into substitute-other-storedir
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r--src/libstore/worker-protocol.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh
index 5a3e33c08..48fbb481f 100644
--- a/src/libstore/worker-protocol.hh
+++ b/src/libstore/worker-protocol.hh
@@ -30,7 +30,7 @@ typedef enum {
wopSetOptions = 19,
wopCollectGarbage = 20,
wopQuerySubstitutablePathInfo = 21,
- wopQueryDerivationOutputs = 22,
+ wopQueryDerivationOutputs = 22, // obsolete
wopQueryAllValidPaths = 23,
wopQueryFailedPaths = 24,
wopClearFailedPaths = 25,
@@ -49,6 +49,7 @@ typedef enum {
wopNarFromPath = 38,
wopAddToStoreNar = 39,
wopQueryMissing = 40,
+ wopQueryDerivationOutputMap = 41,
} WorkerOp;
@@ -73,5 +74,6 @@ StorePathCAMap readStorePathCAMap(const Store & store, Source & from);
void writeStorePathCAMap(const Store & store, Sink & out, const StorePathCAMap & paths);
+void writeOutputPathMap(const Store & store, Sink & out, const OutputPathMap & paths);
}