diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-10-07 17:13:54 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-10-07 17:13:54 +0200 |
commit | c43e882f54b5f09278dfb0d315239531c0676b4e (patch) | |
tree | 5c3b4bff37b34b428889d12aef3999a666c4ed1a /src/libstore/worker-protocol.hh | |
parent | be149acfdaae06667bc58df467c04c41827b69d0 (diff) |
Serialize exceptions from the daemon to the client
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 564fb978a..b3705578e 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -6,7 +6,7 @@ namespace nix { #define WORKER_MAGIC_1 0x6e697863 #define WORKER_MAGIC_2 0x6478696f -#define PROTOCOL_VERSION 0x119 +#define PROTOCOL_VERSION 0x11a #define GET_PROTOCOL_MAJOR(x) ((x) & 0xff00) #define GET_PROTOCOL_MINOR(x) ((x) & 0x00ff) |