diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-02-21T17·34+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2007-02-21T17·34+0000 |
commit | bdadb98de8fcd5ed99cca97071741e2775f3ada2 (patch) | |
tree | e00b997c3dd90baafeb20fbf2ac2b89e87b2d325 /src/libstore/worker-protocol.hh | |
parent | 0f5da8a83c227879566ed87623617fe195bc6f88 (diff) |
* `nix-store --import' now also works in remote mode. The worker
always requires a signature on the archive. This is to ensure that unprivileged users cannot add Trojan horses to the Nix store.
Diffstat (limited to 'src/libstore/worker-protocol.hh')
-rw-r--r-- | src/libstore/worker-protocol.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index e48fd5fe9708..0126c8d59db9 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -32,7 +32,8 @@ typedef enum { #define STDERR_NEXT 0x6f6c6d67 -#define STDERR_DATA 0x64617461 +#define STDERR_READ 0x64617461 // data needed from source +#define STDERR_WRITE 0x64617416 // data for sink #define STDERR_LAST 0x616c7473 #define STDERR_ERROR 0x63787470 |