diff options
Diffstat (limited to 'xlators/protocol/client/src/client-handshake.c')
| -rw-r--r-- | xlators/protocol/client/src/client-handshake.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/xlators/protocol/client/src/client-handshake.c b/xlators/protocol/client/src/client-handshake.c index 51467f3d185..b18d3a27e7e 100644 --- a/xlators/protocol/client/src/client-handshake.c +++ b/xlators/protocol/client/src/client-handshake.c @@ -994,6 +994,7 @@ client_setvolume (xlator_t *this, struct rpc_clnt *rpc)                          "asprintf failed while setting process_uuid");                  goto fail;          } +          ret = dict_set_dynstr (options, "process-uuid", process_uuid_xl);          if (ret < 0) {                  gf_log (this->name, GF_LOG_ERROR, @@ -1002,6 +1003,13 @@ client_setvolume (xlator_t *this, struct rpc_clnt *rpc)                  goto fail;          } +        ret = dict_set_str (options, "client-version", PACKAGE_VERSION); +        if (ret < 0) { +                gf_log (this->name, GF_LOG_WARNING, +                        "failed to set client-version(%s) in handshake msg", +                        PACKAGE_VERSION); +        } +          if (this->ctx->cmd_args.volfile_server) {                  if (this->ctx->cmd_args.volfile_id) {                          ret = dict_set_str (options, "volfile-key",  | 
