diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-15 16:09:16 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-15 16:49:23 -0700 |
commit | d49f2e77b4741706ec125cc62ea913ed5d39bd39 (patch) | |
tree | ecdb3d8c7aad836d43844333b87139a105bf1171 /include/fuse_lowlevel.h | |
parent | 587df370419e641ed47489f08069ad5f4ca4fe5f (diff) | |
download | libfuse-d49f2e77b4741706ec125cc62ea913ed5d39bd39.tar.gz |
Unify handling of fuse_conn_info options
Instead of using command line options to modify struct fuse_conn_info
before and after calling the init() handler, we now give the file system
explicit control over this.
Diffstat (limited to 'include/fuse_lowlevel.h')
-rw-r--r-- | include/fuse_lowlevel.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 0b7ee2b..d3aa484 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -1628,18 +1628,11 @@ void fuse_lowlevel_version(void); void fuse_mount_version(void); /** - * Print available low-level options to stdout. - * These options may be passed to `fuse_session_new()` - */ -void fuse_lowlevel_help(void); - -/** * Print available mount options to stdout. * These options may be passed to `fuse_session_new()` */ void fuse_mount_help(void); - /** * Print available options for `fuse_parse_cmdline()`. */ @@ -1684,9 +1677,12 @@ int fuse_parse_cmdline(struct fuse_args *args, * Returns a session structure suitable for passing to * fuse_session_mount() and fuse_session_loop(). * - * Known options are defined in `struct fuse_opt fuse_ll_opts[]` and - * `struct fuse_opt fuse_mount_opts[]`. If not all options are known, - * an error message is written to stderr and the function returns NULL. + * Known options can be listed by fuse_mount_help(). Additionally, + * this function accepts the `--debug` option (which is not explicitly + * listed by fuse_mount_help()). + * + * If not all options are known, an error message is written to stderr + * and the function returns NULL. * * @param args argument vector * @param op the (low-level) filesystem operations |