2006-11-30 20:13:59 +00:00
|
|
|
#ifndef __WORKER_PROTOCOL_H
|
|
|
|
#define __WORKER_PROTOCOL_H
|
|
|
|
|
|
|
|
|
|
|
|
#define WORKER_MAGIC_1 0x6e697864
|
|
|
|
#define WORKER_MAGIC_2 0x6478696e
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2006-11-30 20:45:20 +00:00
|
|
|
wopQuit,
|
|
|
|
wopIsValidPath,
|
|
|
|
wopQuerySubstitutes,
|
2006-11-30 22:43:55 +00:00
|
|
|
wopHasSubstitutes,
|
|
|
|
wopQueryPathHash,
|
|
|
|
wopQueryReferences,
|
|
|
|
wopQueryReferrers,
|
2006-11-30 20:45:20 +00:00
|
|
|
wopAddToStore,
|
|
|
|
wopAddTextToStore,
|
2006-11-30 22:43:55 +00:00
|
|
|
wopBuildDerivations,
|
|
|
|
wopEnsurePath,
|
2006-12-02 16:41:36 +00:00
|
|
|
wopAddTempRoot,
|
2006-12-04 23:29:16 +00:00
|
|
|
wopAddIndirectRoot,
|
|
|
|
wopSyncWithGC,
|
2006-11-30 20:13:59 +00:00
|
|
|
} WorkerOp;
|
|
|
|
|
|
|
|
|
2006-12-03 02:08:13 +00:00
|
|
|
#define STDERR_NEXT 0x6f6c6d67
|
|
|
|
#define STDERR_LAST 0x616c7473
|
|
|
|
#define STDERR_ERROR 0x63787470
|
|
|
|
|
|
|
|
|
2006-12-04 14:21:39 +00:00
|
|
|
/* The default location of the daemon socket, relative to
|
|
|
|
nixStateDir. */
|
|
|
|
#define DEFAULT_SOCKET_PATH "/daemon.socket"
|
|
|
|
|
|
|
|
|
2006-11-30 20:13:59 +00:00
|
|
|
#endif /* !__WORKER_PROTOCOL_H */
|