mirror of
https://github.com/NixOS/nix
synced 2025-07-03 06:11:46 +02:00
* First remote operation: isValidPath().
This commit is contained in:
parent
765bdfe542
commit
a711689368
4 changed files with 63 additions and 7 deletions
16
src/libstore/worker-protocol.hh
Normal file
16
src/libstore/worker-protocol.hh
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef __WORKER_PROTOCOL_H
|
||||
#define __WORKER_PROTOCOL_H
|
||||
|
||||
|
||||
#define WORKER_MAGIC_1 0x6e697864
|
||||
#define WORKER_MAGIC_2 0x6478696e
|
||||
|
||||
|
||||
typedef enum {
|
||||
wopQuit = 0,
|
||||
wopIsValidPath = 1,
|
||||
wopQuerySubstitutes = 2,
|
||||
} WorkerOp;
|
||||
|
||||
|
||||
#endif /* !__WORKER_PROTOCOL_H */
|
Loading…
Add table
Add a link
Reference in a new issue