// lock protocol

#ifndef protocol_h
#define protocol_h

#include "rpc.h"

class lock_reverse_protocol {
	public:
		enum xxstatus { OK, RETRY, RPCERR, NOENT, IOERR };
		typedef int status;
		enum rpc_numbers {
			grant = 0x7001,
			revoke,
			stat
		};
};

#endif 
