1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/examples/VFS
Stefan Metzmacher dc03a328d8 s3:example/VFS: fix the build
metze
2009-02-24 17:55:37 +01: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 r23799: updated old Franklin Street FSF addresses to new URL 2007-10-10 12:28:26 -05:00
config.sub r23799: updated old Franklin Street FSF addresses to new URL 2007-10-10 12:28:26 -05:00
configure.in examples/VFS: fix the configure and make with the new directory layout 2009-02-05 17:28:48 +01: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 examples/VFS: fix the configure and make with the new directory layout 2009-02-05 17:28:48 +01: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 RIP BOOL. Convert BOOL -> bool. I found a few interesting 2007-10-18 17:40:25 -07:00
skel_opaque.c s3:example/VFS: fix the build 2009-02-24 17:55:37 +01:00
skel_transparent.c s3:example/VFS: fix the build 2009-02-24 17:55:37 +01: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.