1
0
Fork 0
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:
Eelco Dolstra 2006-11-30 20:13:59 +00:00
parent 765bdfe542
commit a711689368
4 changed files with 63 additions and 7 deletions

View 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 */