Modules/SunRPC - Stubbed
authorJohn Hodge <[email protected]>
Mon, 17 Oct 2011 03:12:12 +0000 (11:12 +0800)
committerJohn Hodge <[email protected]>
Mon, 17 Oct 2011 03:12:12 +0000 (11:12 +0800)
Modules/Libraries/SunRPC/proto.h [new file with mode: 0644]

diff --git a/Modules/Libraries/SunRPC/proto.h b/Modules/Libraries/SunRPC/proto.h
new file mode 100644 (file)
index 0000000..150fc42
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * Acess2 Kernel
+ * - Sun RPC (RFC 1057) implementation
+ * proto.h
+ * - Protocol definition
+ */
+#ifndef _SUNRPC_PROTO_H_
+#define _SUNRPC_PROTO_H_
+
+struct sRPC_CallBody
+{
+       Uint32  RPCVers;        //!< Version (2)
+       Uint32  Program;        //!< Program Identifier
+       Uint32  Version;        //!< Program Version
+       
+};
+
+struct sRPC_Message
+{
+       tNet32  XID;    //!< Transaction Identifier
+       union
+       {
+               struct sRPC_CallBody    Call;
+       };
+};
+
+#endif
+

UCC git Repository :: git.ucc.asn.au