diff options
Diffstat (limited to 'rpc/xdr/src/cli1.x')
| -rw-r--r-- | rpc/xdr/src/cli1.x | 34 | 
1 files changed, 34 insertions, 0 deletions
diff --git a/rpc/xdr/src/cli1.x b/rpc/xdr/src/cli1.x index d3383147268..0c4cbf83359 100644 --- a/rpc/xdr/src/cli1.x +++ b/rpc/xdr/src/cli1.x @@ -195,3 +195,37 @@ struct gf1_cli_set_vol_req {          int     op_errno;          string  volname<>;  }  ; + +struct gf1_cli_log_filename_req { +        string volname<>; +        string brick<>; +        string path<>; +}; + +struct gf1_cli_log_filename_rsp { +	int op_ret; +	int op_errno; +        string errstr<>; +}; + +struct gf1_cli_log_locate_req { +	string volname<>; +        string brick<>; +}; + +struct gf1_cli_log_locate_rsp { +	int op_ret; +	int op_errno; +        string path<>; +}; + +struct gf1_cli_log_rotate_req { +	string volname<>; +        string brick<>; +}; + +struct gf1_cli_log_rotate_rsp { +	int op_ret; +	int op_errno; +        string errstr<>; +};  | 
