diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-01-25 21:14:27 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-01-25 21:15:58 +0100 |
commit | 35dbdbedd41dea45bf38ae11d74f72c39eb304c3 (patch) | |
tree | d9d72e5e38c227c95097fb6cdd39abc24986843a /src/libstore/worker-protocol.hh | |
parent | fcf3528ad1ad3fc0eeac9a1241b7edfebf67eb3d (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.hh | 2 |
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) |