From 93849ac2aa81f1bb2a858575386512ce01d725de Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 16 Oct 2016 14:18:07 -0700 Subject: fuse_session_new(): instead of listing options, refer to mount.fuse(8) --- include/fuse_lowlevel.h | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'include/fuse_lowlevel.h') diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index f17920d..d3b3e35 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -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. -- cgit v1.2.3