diff options
author | Shea Levy <shea@shealevy.com> | 2016-09-02T18·33-0400 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2016-09-02T18·33-0400 |
commit | 584f8a62de117ade154ec8208d939dc194782936 (patch) | |
tree | e024b836a9ce4b9fb08e0f29ded2c7a8128de290 /src/libstore/worker-protocol.hh | |
parent | ecba88de9367f733610121fc0153310f92e05b65 (diff) |
Implement nar-based addToStore for remote-store
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index c7f024efe749..2cd246dab5df 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -46,7 +46,8 @@ typedef enum { wopVerifyStore = 35, wopBuildDerivation = 36, wopAddSignatures = 37, - wopNarFromPath = 38 + wopNarFromPath = 38, + wopAddToStoreNar = 39 } WorkerOp; |