diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2023-01-02 11:08:16 +0000 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2023-01-02 11:09:07 +0000 |
commit | 06be4565bfffb9fe1de9e8f4d5b09ea700451dec (patch) | |
tree | 9451845b3a57092d924c33709f58dec4628a8fe8 /include/fuse_lowlevel.h | |
parent | 40b0cf9029e9c4d314c12200022e0e81ea8f99da (diff) | |
download | libfuse-06be4565bfffb9fe1de9e8f4d5b09ea700451dec.tar.gz |
Revert "libfuse custom communication interface"
This reverts commit 777663953382925c7403f0560c28ec9bbd14d7be.
Diffstat (limited to 'include/fuse_lowlevel.h')
-rw-r--r-- | include/fuse_lowlevel.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 955482c..53f0fcf 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -1955,25 +1955,6 @@ struct fuse_session *fuse_session_new(struct fuse_args *args, size_t op_size, void *userdata); /** - * Set a file descriptor for the session. - * - * This function can be used if you want to have a custom communication - * interface instead of using a mountpoint. In practice, this means that instead - * of calling fuse_session_mount() and fuse_session_unmount(), one could call - * fuse_custom_session_fd() where fuse_session_mount() would have otherwise been - * called. - * - * This function does not open or close any file descriptors, meaning it is the - * responsibility of the caller to provide a valid file descriptor, such as a - * accepted socket. It is also the responsibility to close the socket. - * - * @param se session object - * @param fd file descriptor for the session - * - **/ -void fuse_custom_session_fd(struct fuse_session *se, int fd); - -/** * Mount a FUSE file system. * * @param mountpoint the mount point path |