aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/worker-protocol.hh
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2021-03-09 11:40:16 -0600
committerGitHub <noreply@github.com>2021-03-09 11:40:16 -0600
commitd5fd0f4745d834f7ac7049a0eb7e212ce9c7ef47 (patch)
treedd14d3f4f3bfa4780f32ce1b57d0d505d024388c /src/libstore/worker-protocol.hh
parent4fefe26717fa70828e3f524e43c76e3f7b7a09b0 (diff)
parent1c0e3e453d41b869e4ac7e25dc1c00c349a7c411 (diff)
Merge branch 'master' into cross-jobs
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 f2cdc7ca3..95f08bc9a 100644
--- a/src/libstore/worker-protocol.hh
+++ b/src/libstore/worker-protocol.hh
@@ -9,7 +9,7 @@ namespace nix {
#define WORKER_MAGIC_1 0x6e697863
#define WORKER_MAGIC_2 0x6478696f
-#define PROTOCOL_VERSION 0x11b
+#define PROTOCOL_VERSION 0x11c
#define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00)
#define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff)
@@ -86,6 +86,8 @@ namespace worker_proto {
MAKE_WORKER_PROTO(, std::string);
MAKE_WORKER_PROTO(, StorePath);
MAKE_WORKER_PROTO(, ContentAddress);
+MAKE_WORKER_PROTO(, Realisation);
+MAKE_WORKER_PROTO(, DrvOutput);
MAKE_WORKER_PROTO(template<typename T>, std::set<T>);