diff options
author | Anand V. Avati <avati@blackhole.gluster.com> | 2010-08-12 05:05:01 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-08-12 03:55:12 -0700 |
commit | b69a4f1e31726260a07f883cefac28ed29cc6a12 (patch) | |
tree | 864d706e8f4d02d6b3296665f74e110020a03d4c /xlators/mgmt/glusterd/src/glusterd.c | |
parent | f862864468c9d11d646bdcc347a1121fe75a1917 (diff) |
portmap functionality in glusterd
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1314 (portmapper functionality)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1314
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c index 7d888d944fb..d2b271a1b5f 100644 --- a/xlators/mgmt/glusterd/src/glusterd.c +++ b/xlators/mgmt/glusterd/src/glusterd.c @@ -49,6 +49,7 @@ static uuid_t glusterd_uuid; extern struct rpcsvc_program glusterd1_mop_prog; extern struct rpcsvc_program gluster_handshake_prog; extern struct rpc_clnt_program glusterd3_1_mgmt_prog; +extern struct rpcsvc_program gluster_pmap_prog; extern glusterd_op_info_t opinfo; @@ -267,6 +268,13 @@ init (xlator_t *this) goto out; } + ret = rpcsvc_program_register (rpc, gluster_pmap_prog); + if (ret) { + gf_log (this->name, GF_LOG_ERROR, + "rpcsvc_program_register returned %d", ret); + goto out; + } + gluster_handshake_prog.options = this->options; ret = rpcsvc_program_register (rpc, gluster_handshake_prog); if (ret) |