aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/worker-protocol.hh
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-01-25 21:14:27 +0100
committerEelco Dolstra <edolstra@gmail.com>2022-01-25 21:15:58 +0100
commit35dbdbedd41dea45bf38ae11d74f72c39eb304c3 (patch)
treed9d72e5e38c227c95097fb6cdd39abc24986843a /src/libstore/worker-protocol.hh
parentfcf3528ad1ad3fc0eeac9a1241b7edfebf67eb3d (diff)
nix store ping: Report Nix daemon version
Fixes #5952.
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r--src/libstore/worker-protocol.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh
index ecf42a5d0..c8332afe6 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 (1 << 8 | 32)
+#define PROTOCOL_VERSION (1 << 8 | 33)
#define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00)
#define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff)