blob: 9ff7a271cf26059321e0bfd370fb12d8bd863c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/usr/bin/python3
from __future__ import print_function
import ctypes
api = ctypes.CDLL("libgfapi.so", mode=ctypes.RTLD_GLOBAL)
api.glfs_ipc.argtypes = [ ctypes.c_void_p, ctypes.c_int, ctypes.c_void_p, ctypes.c_void_p ]
api.glfs_ipc.restype = ctypes.c_int
def do_ipc (host, volume):
fs = api.glfs_new(volume)
#api.glfs_set_logging(fs, "/dev/stderr", 7)
api.glfs_set_volfile_server(fs, "tcp", host, 24007)
api.glfs_init(fs)
ret = api.glfs_ipc(fs, 1470369258, 0, 0)
api.glfs_fini(fs)
return ret
if __name__ == "__main__":
import sys
try:
res = do_ipc(*sys.argv[1:3])
print(res)
except:
print("IPC failed (volume not started?)")
|