aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2005-02-28 11:46:56 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2005-02-28 11:46:56 +0000
commitf43f06394ff53c2cb36a6843298fe36900cd902c (patch)
treeec83707d80bdc26ed5c82f7d492ffa77a3a08cc8 /include/fuse.h
parent47c529838cde03fa23387f2bf91dfb5706a4470b (diff)
fixes
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index fffca2e..5b9df10 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -24,7 +24,7 @@
#define FUSE_MAJOR_VERSION 2
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 2
+#define FUSE_MINOR_VERSION 3
/* This interface uses 64 bit off_t */
#if _FILE_OFFSET_BITS != 64
@@ -241,6 +241,14 @@ struct fuse_operations {
/** Remove extended attributes */
int (*removexattr) (const char *, const char *);
+
+ /** Open direcory
+ *
+ * This method should check if the open operation is permitted for
+ * this directory. The fuse_file_info parameter is currently
+ * unused. This method is optional.
+ */
+ int (*opendir) (const char *, struct fuse_file_info *);
};
/** Extra context that may be needed by some filesystems