fuse_session_new(): instead of listing options, refer to mount.fuse(8)
authorNikolaus Rath <Nikolaus@rath.org>
Sun, 16 Oct 2016 21:18:07 +0000 (14:18 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 16 Oct 2016 21:18:07 +0000 (14:18 -0700)
include/fuse_lowlevel.h

index f17920dda00741433e505e493591602068d8ee4f..d3b3e3540b48ea62bdd9d2f36892ae27eeceae51 100644 (file)
@@ -1673,16 +1673,11 @@ int fuse_parse_cmdline(struct fuse_args *args,
  * Returns a session structure suitable for passing to
  * fuse_session_mount() and fuse_session_loop().
  *
- * Under Linux, this function accepts the following options:
- *
- *  -d, --debug            enable debugging output
- *  -o allow_other         allow access to other users
- *  -o allow_root          allow access to root
- *  -o auto_unmount        auto unmount on process termination
- *  -o default_permissions enable permission checking by kernel
- *  -o fsname=NAME         set filesystem name
- *  -o subtype=NAME        set filesystem type
- *  -o max_read=N          set maximum size of read requests
+ * This function accepts most file-system independent mount options
+ * (like context, nodev, ro - see mount(8)), as well as the general
+ * fuse mount options listed in mount.fuse(8) (e.g. -o allow_root and
+ * -o default_permissions, but not ``-o use_ino``).  Instead of `-o
+ * debug`, debugging may also enabled with `-d` or `--debug`.
  *
  * If not all options are known, an error message is written to stderr
  * and the function returns NULL.