summaryrefslogtreecommitdiffstats
path: root/rpc/xdr/src/glusterd1.x
diff options
context:
space:
mode:
Diffstat (limited to 'rpc/xdr/src/glusterd1.x')
-rw-r--r--rpc/xdr/src/glusterd1.x107
1 files changed, 0 insertions, 107 deletions
diff --git a/rpc/xdr/src/glusterd1.x b/rpc/xdr/src/glusterd1.x
deleted file mode 100644
index 19fa7af68..000000000
--- a/rpc/xdr/src/glusterd1.x
+++ /dev/null
@@ -1,107 +0,0 @@
- enum glusterd_volume_status {
- GLUSTERD_STATUS_NONE = 0,
- GLUSTERD_STATUS_STARTED,
- GLUSTERD_STATUS_STOPPED
-} ;
-
- struct gd1_mgmt_probe_req {
- unsigned char uuid[16];
- string hostname<>;
- int port;
-} ;
-
- struct gd1_mgmt_probe_rsp {
- unsigned char uuid[16];
- string hostname<>;
- int port;
-} ;
-
-struct gd1_mgmt_friend_req {
- unsigned char uuid[16];
- string hostname<>;
- int port;
- opaque vols<>;
-} ;
-
-struct gd1_mgmt_friend_rsp {
- unsigned char uuid[16];
- string hostname<>;
- int op_ret;
- int op_errno;
- int port;
-} ;
-
-struct gd1_mgmt_unfriend_req {
- unsigned char uuid[16];
- string hostname<>;
- int port;
-} ;
-
-struct gd1_mgmt_unfriend_rsp {
- unsigned char uuid[16];
- string hostname<>;
- int op_ret;
- int op_errno;
- int port;
-} ;
-
-struct gd1_mgmt_cluster_lock_req {
- unsigned char uuid[16];
-} ;
-
-struct gd1_mgmt_cluster_lock_rsp {
- unsigned char uuid[16];
- int op_ret;
- int op_errno;
-} ;
-
-struct gd1_mgmt_cluster_unlock_req {
- unsigned char uuid[16];
-} ;
-
-struct gd1_mgmt_cluster_unlock_rsp {
- unsigned char uuid[16];
- int op_ret;
- int op_errno;
-} ;
-
-struct gd1_mgmt_stage_op_req {
- unsigned char uuid[16];
- int op;
- opaque buf<>;
-} ;
-
-
-struct gd1_mgmt_stage_op_rsp {
- unsigned char uuid[16];
- int op;
- int op_ret;
- int op_errno;
-} ;
-
-struct gd1_mgmt_commit_op_req {
- unsigned char uuid[16];
- int op;
- opaque buf<>;
-} ;
-
-
-struct gd1_mgmt_commit_op_rsp {
- unsigned char uuid[16];
- int op;
- int op_ret;
- int op_errno;
-} ;
-
-struct gd1_mgmt_friend_update {
- unsigned char uuid[16];
- opaque friends<>;
- int port;
-} ;
-
-struct gd1_mgmt_friend_update_rsp {
- unsigned char uuid[16];
- int op;
- int op_ret;
- int op_errno;
-} ;