1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-29 11:21:54 +03:00
samba-mirror/examples/VFS
Jeremy Allison fc6899a550 r23620: Convert set_nt_acl to return NTSTATUS. Also fix the chown
return to correctly return NT_STATUS_INVALID_OWNER if it
should be disallowed. Matches better what W2K3R3 does.

NFSv4 ACL module owners, please examine these changes.

Jeremy.
2007-10-10 12:23:37 -05:00
..
autogen.sh r5131: BUG 2290: don;t call mkversion.sh since we don't have it in this directory 2007-10-10 10:55:28 -05:00
config.guess r21762: Fix the build by enabling shared modules and adding the config.* 2007-10-10 12:18:29 -05:00
config.sub r21762: Fix the build by enabling shared modules and adding the config.* 2007-10-10 12:18:29 -05:00
configure.in r21762: Fix the build by enabling shared modules and adding the config.* 2007-10-10 12:18:29 -05:00
install-sh Move VFS example skel.c to two different examples: one for opaque operations and one for transparent. Also add configure support for compiling third-party modules. Patch from Stefan Metzmacher <metze@metzemix.de> 0001-01-01 00:00:00 +00:00
Makefile.in r22341: Fix build of examples/VFS: adapt include for new place of tdb... 2007-10-10 12:19:27 -05:00
README Move VFS example skel.c to two different examples: one for opaque operations and one for transparent. Also add configure support for compiling third-party modules. Patch from Stefan Metzmacher <metze@metzemix.de> 0001-01-01 00:00:00 +00:00
shadow_copy_test.c r22591: Fix up the examples also. 2007-10-10 12:19:49 -05:00
skel_opaque.c r23620: Convert set_nt_acl to return NTSTATUS. Also fix the chown 2007-10-10 12:23:37 -05:00
skel_transparent.c r23620: Convert set_nt_acl to return NTSTATUS. Also fix the chown 2007-10-10 12:23:37 -05:00

README for Samba Virtual File System (VFS) Example
===================================================

This directory contains skeleton VFS modules.  When used,
this module simply passes all requests back to the disk functions
(i.e it operates as a passthrough filter).  It should be
useful as a starting point for developing new VFS
modules. 

Please look at skel_opaque.c when you want your module to provide
final functions, like a database filesystem.

Please look at skel_transport.c when you want your module to provide
passthrough functions, like audit modules. 

Please read the VFS chapter in the HOWTO collection for general help 
on the usage of VFS modules.

Further documentation on writing VFS modules for Samba can be found in
Samba Developers Guide.