diff options
author | Csaba Henk <csaba@gluster.com> | 2011-04-19 07:19:17 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-04-21 00:39:50 -0700 |
commit | 0dd8c38d17e51c4b8bd1471854315e27c25cc615 (patch) | |
tree | 93a85fc17bf65ba58421afb30be2c9a73ed1c6b5 /rpc/xdr/src/cli1-xdr.h | |
parent | 29ac0febecbca0700bb4b1e2335b8dace5ff452c (diff) |
geo-replication: revamp CONFIG command
Drop the config_type RPC req field, use just a "subop" key in the param dict.
Signed-off-by: Csaba Henk <csaba@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2785 (gsyncd logs on slave side go to /dev/null)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2785
Diffstat (limited to 'rpc/xdr/src/cli1-xdr.h')
-rw-r--r-- | rpc/xdr/src/cli1-xdr.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/rpc/xdr/src/cli1-xdr.h b/rpc/xdr/src/cli1-xdr.h index 96f8def58c7..5b6bfd8f1fe 100644 --- a/rpc/xdr/src/cli1-xdr.h +++ b/rpc/xdr/src/cli1-xdr.h @@ -87,12 +87,8 @@ enum gf1_cli_gsync_set { GF_GSYNC_OPTION_TYPE_NONE = 0, GF_GSYNC_OPTION_TYPE_START = 1, GF_GSYNC_OPTION_TYPE_STOP = 2, - GF_GSYNC_OPTION_TYPE_CONFIGURE = 3, - GF_GSYNC_OPTION_TYPE_CONFIG_SET = 4, - GF_GSYNC_OPTION_TYPE_CONFIG_DEL = 5, - GF_GSYNC_OPTION_TYPE_CONFIG_GET = 6, - GF_GSYNC_OPTION_TYPE_CONFIG_GET_ALL = 7, - GF_GSYNC_OPTION_TYPE_STATUS = 8, + GF_GSYNC_OPTION_TYPE_CONFIG = 3, + GF_GSYNC_OPTION_TYPE_STATUS = 4, }; typedef enum gf1_cli_gsync_set gf1_cli_gsync_set; @@ -478,8 +474,8 @@ struct gf1_cli_gsync_set_rsp { int op_errno; char *op_errstr; int type; - int config_type; char *op_name; + char *subop; char *master; char *slave; char *gsync_prefix; |