changeset 113:ebd699f64656

common: define command numbers for fs RPC protocol Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Sat, 17 Oct 2015 18:57:42 -0400
parents c28c896882ec
children c3422700267c
files src/common/include/nomad/rpc_fs.h
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/common/include/nomad/rpc_fs.h	Sat Oct 17 18:57:17 2015 -0400
+++ b/src/common/include/nomad/rpc_fs.h	Sat Oct 17 18:57:42 2015 -0400
@@ -24,5 +24,13 @@
 #define __NOMAD_RPC_FS_H
 
 #include <nomad/rpc_fs_xdr.h>
+#include <nomad/rpc.h>
+
+#define NRPC_NOP	0x0000
+#define NRPC_LOGIN	0x0001
+#define NRPC_STAT	0x0002
+#define NRPC_LOOKUP	0x0003
+#define NRPC_CREATE	0x0004
+#define NRPC_REMOVE	0x0005
 
 #endif