1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/examples/VFS
2003-08-08 00:53:46 +00:00
..
.cvsignore 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> 2003-06-04 13:13:41 +00:00
autogen.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> 2003-06-04 13:13:41 +00:00
configure.in Make skeleton VFSs compile with new EA modules. 2003-06-06 07:09:30 +00: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> 2003-06-04 13:13:41 +00:00
Makefile.in 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> 2003-06-04 13:13:41 +00: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> 2003-06-04 13:13:41 +00:00
shadow_copy_test.c Added by request of "Stefan (metze) Metzmacher" <metze@metzemix.de>. 2003-08-08 00:53:46 +00:00
skel_opaque.c Test modules for shadow copy by "Stefan (metze) Metzmacher" <metze@metzemix.de>. 2003-08-07 21:49:01 +00:00
skel_transparent.c Test modules for shadow copy by "Stefan (metze) Metzmacher" <metze@metzemix.de>. 2003-08-07 21:49:01 +00: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.