diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-08-01 12:48:30 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-08-01 12:48:30 +0000 |
commit | 7b28eaeac5f2d8d591b1b0c94e10b64644017869 (patch) | |
tree | b59344f5b9261da640b0e21ac398093755fdfbae /include/fuse.h | |
parent | e77cc07e755c1e360455e707653f705d0bd25622 (diff) | |
download | libfuse-7b28eaeac5f2d8d591b1b0c94e10b64644017869.tar.gz |
fix
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h index e285c07..b7b7ef3 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -306,6 +306,17 @@ struct fuse_operations { * Introduced in version 2.3 */ void (*destroy) (void *); + + /** + * Check file access permissions + * + * Need not be implemented. Will only be called for the access() + * system call, and only if 'default_permissions' mount option is + * not given. + * + * Introduced in version 2.4 + */ + int (*access) (const char *, int); }; /** Extra context that may be needed by some filesystems |