diff options
author | Michael Adam <obnox@samba.org> | 2012-09-04 18:04:11 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-09-08 03:39:06 +0200 |
commit | 35260ae89e2970712e2a141cd034b513076fc1ed (patch) | |
tree | d3ef6b0c06997760541c41ccdeb1ae1520e51548 /source3/modules | |
parent | eb1a05f783721247e9e01f4039f36c3d69b2dca7 (diff) | |
download | samba-35260ae89e2970712e2a141cd034b513076fc1ed.tar.gz samba-35260ae89e2970712e2a141cd034b513076fc1ed.tar.bz2 samba-35260ae89e2970712e2a141cd034b513076fc1ed.zip |
s3:vfs: add durable VFS operations
This allows a VFS module to implement durable handles in different ways.
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_default.c | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 42671a1dbe..427e3af9ca 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -2227,6 +2227,34 @@ static int vfswrap_set_offline(struct vfs_handle_struct *handle, return -1; } +static NTSTATUS vfswrap_durable_cookie(struct vfs_handle_struct *handle, + struct files_struct *fsp, + TALLOC_CTX *mem_ctx, + DATA_BLOB *cookie) +{ + return NT_STATUS_NOT_SUPPORTED; +} + +static NTSTATUS vfswrap_durable_disconnect(struct vfs_handle_struct *handle, + struct files_struct *fsp, + const DATA_BLOB old_cookie, + TALLOC_CTX *mem_ctx, + DATA_BLOB *new_cookie) +{ + return NT_STATUS_NOT_SUPPORTED; +} + +static NTSTATUS vfswrap_durable_reconnect(struct vfs_handle_struct *handle, + struct smb_request *smb1req, + struct smbXsrv_open *op, + const DATA_BLOB old_cookie, + TALLOC_CTX *mem_ctx, + struct files_struct **fsp, + DATA_BLOB *new_cookie) +{ + return NT_STATUS_NOT_SUPPORTED; +} + static struct vfs_fn_pointers vfs_default_fns = { /* Disk operations */ @@ -2344,7 +2372,12 @@ static struct vfs_fn_pointers vfs_default_fns = { /* offline operations */ .is_offline_fn = vfswrap_is_offline, - .set_offline_fn = vfswrap_set_offline + .set_offline_fn = vfswrap_set_offline, + + /* durable handle operations */ + .durable_cookie_fn = vfswrap_durable_cookie, + .durable_disconnect_fn = vfswrap_durable_disconnect, + .durable_reconnect_fn = vfswrap_durable_reconnect, }; NTSTATUS vfs_default_init(void); |