1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/examples/VFS
Michael Adam f5bc4de1cd examples/VFS: try to fix the build on openbsd, adding alternative spellings of autoconf/header
The host "samba-amd64" on the build farm running openbsd 4.8 broke.
Taking over the additional spellings of autoconf and autoheader from
the source3/autogen.sh script should fix it.
2011-07-06 12:55:25 +02:00
..
autogen.sh examples/VFS: try to fix the build on openbsd, adding alternative spellings of autoconf/header 2011-07-06 12:55:25 +02:00
config.guess VFS examples: Update copy of config.{guess,sub}. 2009-07-18 20:04:11 +02:00
config.sub VFS examples: Update copy of config.{guess,sub}. 2009-07-18 20:04:11 +02: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: add include path for s3's autoconf config.h 2011-06-30 15:41:24 +02: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 examples/VFS: fix shadow_copy_test.c in reference to shadow_copy changes 2011-06-30 15:41:23 +02:00
skel_opaque.c examples/VFS: fix skel_opaque.c in reference to shadow_copy changes 2011-06-30 15:41:24 +02:00
skel_transparent.c examples/VFS: fix skel_transparent.c in reference to shadow_copy changes 2011-06-30 15:41:24 +02: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.