From 601884e6e861813e14f9064e2f135eb857d59b17 Mon Sep 17 00:00:00 2001 From: Prashanth Pai Date: Tue, 31 May 2016 18:59:56 +0530 Subject: Implement shutil.copy* methods and os.link() Change-Id: I2de796e7d53732c5a967c6194a43378171fcb3d6 Signed-off-by: Prashanth Pai --- gluster/api.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gluster/api.py') diff --git a/gluster/api.py b/gluster/api.py index 3fd9d91..bb0d31f 100755 --- a/gluster/api.py +++ b/gluster/api.py @@ -402,6 +402,11 @@ glfs_rename = gfapi_prototype('glfs_rename', ctypes.c_int, ctypes.c_char_p, ctypes.c_char_p) +glfs_link = gfapi_prototype('glfs_link', ctypes.c_int, + ctypes.c_void_p, + ctypes.c_char_p, + ctypes.c_char_p) + glfs_symlink = gfapi_prototype('glfs_symlink', ctypes.c_int, ctypes.c_void_p, ctypes.c_char_p, -- cgit