diff options
author | Harshavardhana <harsha@harshavardhana.net> | 2014-03-22 01:33:06 -0700 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2014-04-01 15:06:32 -0700 |
commit | 0c1d78f5c52c69268ec3a1d8d5fcb1a1bf15f243 (patch) | |
tree | df5a79310087640d4f436bc6ca6d0ae538286e35 /api/examples | |
parent | e7dcc7f8240ef3f54f39b2f243c1eb0eb1cd3844 (diff) |
gfapi: glfs_set_volfile_server() now entertains multiple calls
Previous API:
glfs_set_volfile_server (..., const char *host, ...) - single call
New API's:
glfs_set_volfile_server (..., const char *host1, ...)
glfs_set_volfile_server (..., const char *host2, ...)
Multiple calls to this function with different volfile servers,
port or transport-type would create a list of volfile servers
which would be polled during `volfile_fetch_attempts()`
glfs_unset_volfile_server (..., const char *host, ...) to remove
a server from the list (this is provided for future usage)
Change-Id: I313efbd3efbd0214e2a71465f33195788df406cc
BUG: 986429
Signed-off-by: Harshavardhana <harsha@harshavardhana.net>
Reviewed-on: http://review.gluster.org/7317
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'api/examples')
-rwxr-xr-x | api/examples/getvolfile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/examples/getvolfile.py b/api/examples/getvolfile.py index 82d9db05510..184586c632d 100755 --- a/api/examples/getvolfile.py +++ b/api/examples/getvolfile.py @@ -5,8 +5,8 @@ import ctypes.util api = ctypes.CDLL(ctypes.util.find_library("gfapi")) api.glfs_get_volfile.argtypes = [ctypes.c_void_p, - ctypes.c_void_p, - ctypes.c_ulong] + ctypes.c_void_p, + ctypes.c_ulong] api.glfs_get_volfile.restype = ctypes.c_long; def get_volfile (host, volume): |