summaryrefslogtreecommitdiffstats
path: root/include/helpers/rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/helpers/rpc.h')
-rw-r--r--include/helpers/rpc.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/helpers/rpc.h b/include/helpers/rpc.h
new file mode 100644
index 0000000..b0b8d17
--- /dev/null
+++ b/include/helpers/rpc.h
@@ -0,0 +1,15 @@
+#ifndef _CTD_RPC_H
+#define _CTD_RPC_H
+
+struct rpc_info {
+ /* XID */
+ uint32_t xid;
+ /* program */
+ uint32_t pm_prog;
+ /* program version */
+ uint32_t pm_vers;
+ /* transport protocol: TCP|UDP */
+ uint32_t pm_prot;
+};
+
+#endif