1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 11:43:15 +02:00

RemoteStore: Send back the new realisations

To allow it to build ca derivations remotely
This commit is contained in:
regnat 2021-01-25 11:08:38 +01:00
parent a2b69660a9
commit 27b5747ca7
3 changed files with 8 additions and 1 deletions

View file

@ -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)