libgfapi: "tcp" is documented as the valid transport type instead of "socket".
Change-Id: I066e9be7755a535f385c102cdd1822adeda7f319 BUG: 860203 Signed-off-by: Avra Sengupta <asengupt@redhat.com> Reviewed-on: http://review.gluster.org/4226 Reviewed-by: Jeff Darcy <jdarcy@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com>
This commit is contained in:
parent
15bf92d53c
commit
5f88d4c1b0
@ -10,7 +10,7 @@ api = ctypes.CDLL("api/libgfapi.so",ctypes.RTLD_GLOBAL)
|
||||
|
||||
fs = api.glfs_new(sys.argv[1])
|
||||
api.glfs_set_logging(fs,"/dev/stderr",7)
|
||||
api.glfs_set_volfile_server(fs,"socket","localhost",24007)
|
||||
api.glfs_set_volfile_server(fs,"tcp","localhost",24007)
|
||||
api.glfs_init(fs)
|
||||
print "Initialized volume"
|
||||
|
||||
|
@ -81,7 +81,7 @@ main (int argc, char *argv[])
|
||||
|
||||
// ret = glfs_set_volfile (fs, "/tmp/posix.vol");
|
||||
|
||||
ret = glfs_set_volfile_server (fs, "socket", "localhost", 24007);
|
||||
ret = glfs_set_volfile_server (fs, "tcp", "localhost", 24007);
|
||||
|
||||
// ret = glfs_set_volfile_server (fs, "unix", "/tmp/gluster.sock", 0);
|
||||
|
||||
@ -102,7 +102,7 @@ main (int argc, char *argv[])
|
||||
|
||||
// ret = glfs_set_volfile (fs2, "/tmp/posix.vol");
|
||||
|
||||
ret = glfs_set_volfile_server (fs2, "socket", "localhost", 24007);
|
||||
ret = glfs_set_volfile_server (fs2, "tcp", "localhost", 24007);
|
||||
|
||||
ret = glfs_set_logging (fs2, "/dev/stderr", 7);
|
||||
|
||||
|
@ -136,9 +136,9 @@ int glfs_set_volfile (glfs_t *fs, const char *volfile);
|
||||
|
||||
@transport: String specifying the transport used to connect to the
|
||||
management daemon. Specifying NULL will result in the usage
|
||||
of the default (socket) transport type. Permitted values
|
||||
of the default (tcp) transport type. Permitted values
|
||||
are those what you specify as transport-type in a volume
|
||||
specification file (e.g "socket", "rdma", "unix".)
|
||||
specification file (e.g "tcp", "rdma", "unix".)
|
||||
|
||||
@host: String specifying the address of where to find the management
|
||||
daemon. Depending on the transport type this would either be
|
||||
|
@ -88,7 +88,7 @@ Key of the volume file to be fetched from the server.
|
||||
Port number of volfile server.
|
||||
.TP
|
||||
\fB\-\-volfile\-server\-transport=TRANSPORT\fR
|
||||
Transport type to get volume file from server (the default is socket).
|
||||
Transport type to get volume file from server (the default is tcp).
|
||||
.TP
|
||||
\fB\-\-volume\-name=VOLUME\-NAME\fR
|
||||
Volume name to be used for MOUNT-POINT (the default is top most volume in VOLUME-FILE).
|
||||
|
@ -80,7 +80,7 @@ KEY of the volume file to be fetched from server
|
||||
Port number of volfile server
|
||||
.TP
|
||||
\fB\-\-volfile\-server\-transport=TRANSPORT\fR
|
||||
Transport type to get volume file from server [default: socket]
|
||||
Transport type to get volume file from server [default: tcp]
|
||||
.TP
|
||||
\fB\-\-volume\-name=VOLUME\-NAME\fR
|
||||
Volume name to be used for MOUNT-POINT [default: top most volume in
|
||||
|
@ -48,7 +48,7 @@ Mount the filesystem read-only
|
||||
Volume key or name of the volume file to be fetched from server
|
||||
.TP
|
||||
\fBtransport=\fRTRANSPORT-TYPE
|
||||
Transport type to get volume file from server [default: socket]
|
||||
Transport type to get volume file from server [default: tcp]
|
||||
.TP
|
||||
\fBvolume\-name=\fRVOLUME-NAME
|
||||
Volume name to be used for MOUNT-POINT [default: top most volume in
|
||||
|
Binary file not shown.
@ -416,8 +416,8 @@ Advanced Options
|
||||
@item --volfile-server-port=<port-number>
|
||||
Listening port number of volfile server.
|
||||
|
||||
@item --volfile-server-transport=[socket|ib-verbs]
|
||||
Transport type to get volfile from server. [default: @command{socket}]
|
||||
@item --volfile-server-transport=[tcp|ib-verbs]
|
||||
Transport type to get volfile from server. [default: @command{tcp}]
|
||||
|
||||
@item --xlator-options=<volume-name.option=value>
|
||||
Add/override a translator option for a volume with specified value.
|
||||
@ -494,8 +494,8 @@ Advanced Options
|
||||
@item --volfile-server-port=<port-number>
|
||||
Listening port number of volfile server.
|
||||
|
||||
@item --volfile-server-transport=[socket|ib-verbs]
|
||||
Transport type to get volfile from server. [default: @command{socket}]
|
||||
@item --volfile-server-transport=[tcp|ib-verbs]
|
||||
Transport type to get volfile from server. [default: @command{tcp}]
|
||||
|
||||
@item --xlator-options=<volume-name.option=value>
|
||||
Add/override a translator option for a volume with specified value.
|
||||
|
Loading…
x
Reference in New Issue
Block a user