diff options
author | Amar Tumballi <amar@gluster.com> | 2011-08-29 17:53:24 +0530 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-09-07 10:48:52 -0700 |
commit | f0f3b040dfa062021d3a193e5a19c380eb5e908d (patch) | |
tree | 5e78d2dc05a2aa143b68b0980e21f09511c9120b /rpc/xdr/src/portmap.c | |
parent | f78c8253d7fb75762effcf64683cbce10783a55b (diff) |
modify to the way we used XDR definitions files (.x files)
Earlier:
step 1: copy the existing <xdr>.x files to /tmp
step 2: generate '.[ch]' files using 'rpcgen <xdr>.x'
step 3: check diff with the to the existing files, add only your part
of changes back to the original file. (ignore other changes).
step 4: there is another file to write wrapper functions to convert
structures to/from XDR buffers, update it with your new structure.
step 5: use these wrapper functions in the newly written procedures.
step 6: commit :-|
Now:
step 1: update (mostly adding only) the <xdr>.x file
step 2: run '<path-to-src>/extras/generate-xdr-files.sh <xdr>.x' command
step 3: implement rpc procedure to handle the request/response.
step 4: commit :-)
Change-Id: I219f9159fc980438c86e847c6b030be96e595ea2
BUG: 3488
Reviewed-on: http://review.gluster.com/341
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@gluster.com>
Diffstat (limited to 'rpc/xdr/src/portmap.c')
-rw-r--r-- | rpc/xdr/src/portmap.c | 189 |
1 files changed, 0 insertions, 189 deletions
diff --git a/rpc/xdr/src/portmap.c b/rpc/xdr/src/portmap.c deleted file mode 100644 index f1c1b789e03..00000000000 --- a/rpc/xdr/src/portmap.c +++ /dev/null @@ -1,189 +0,0 @@ -/* - Copyright (c) 2010-2011 Gluster, Inc. <http://www.gluster.com> - This file is part of GlusterFS. - - GlusterFS is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published - by the Free Software Foundation; either version 3 of the License, - or (at your option) any later version. - - GlusterFS is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see - <http://www.gnu.org/licenses/>. -*/ - - -#include "portmap.h" - - -ssize_t -xdr_to_pmap_port_by_brick_req (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_port_by_brick_req); -} - - -ssize_t -xdr_to_pmap_port_by_brick_rsp (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_port_by_brick_rsp); -} - - -ssize_t -xdr_from_pmap_port_by_brick_req (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_port_by_brick_req); -} - - -ssize_t -xdr_from_pmap_port_by_brick_rsp (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_port_by_brick_rsp); -} - - - -ssize_t -xdr_to_pmap_brick_by_port_req (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_brick_by_port_req); -} - - -ssize_t -xdr_to_pmap_brick_by_port_rsp (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_brick_by_port_rsp); -} - - -ssize_t -xdr_from_pmap_brick_by_port_req (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_brick_by_port_req); -} - - -ssize_t -xdr_from_pmap_brick_by_port_rsp (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_brick_by_port_rsp); -} - - - - -ssize_t -xdr_to_pmap_signup_req (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signup_req); -} - - -ssize_t -xdr_to_pmap_signup_rsp (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signup_rsp); -} - - -ssize_t -xdr_from_pmap_signup_req (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signup_req); -} - - -ssize_t -xdr_from_pmap_signup_rsp (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signup_rsp); -} - - - - -ssize_t -xdr_to_pmap_signin_req (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signin_req); -} - - -ssize_t -xdr_to_pmap_signin_rsp (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signin_rsp); -} - - -ssize_t -xdr_from_pmap_signin_req (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signin_req); -} - - -ssize_t -xdr_from_pmap_signin_rsp (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signin_rsp); -} - - - - -ssize_t -xdr_to_pmap_signout_req (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signout_req); -} - - -ssize_t -xdr_to_pmap_signout_rsp (struct iovec inmsg, void *args) -{ - return xdr_to_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signout_rsp); -} - - -ssize_t -xdr_from_pmap_signout_req (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signout_req); -} - - -ssize_t -xdr_from_pmap_signout_rsp (struct iovec inmsg, void *args) -{ - return xdr_serialize_generic (inmsg, (void *)args, - (xdrproc_t)xdr_pmap_signout_rsp); -} - |