Revert "libfuse custom communication interface"
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 2 Jan 2023 11:08:16 +0000 (11:08 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 2 Jan 2023 11:09:07 +0000 (11:09 +0000)
This reverts commit 777663953382925c7403f0560c28ec9bbd14d7be.

include/fuse_lowlevel.h
lib/fuse_lowlevel.c
lib/fuse_versionscript

index 955482c1a46b22d8e871d151db077ad4982e2603..53f0fcf4bd914695172cae099e7f43477760d428 100644 (file)
@@ -1954,25 +1954,6 @@ struct fuse_session *fuse_session_new(struct fuse_args *args,
                                      const struct fuse_lowlevel_ops *op,
                                      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.
  *
index b6ffbd993b9f693ce3b6e0ebb840d7ac81415b45..e82cd9e9ffb8a8f855ed61ecce95418fdfc40c9f 100644 (file)
@@ -3009,10 +3009,6 @@ out1:
        return NULL;
 }
 
-void fuse_custom_session_fd(struct fuse_session *se, int fd) {
-       se->fd = fd;
-}
-
 int fuse_session_mount(struct fuse_session *se, const char *mountpoint)
 {
        int fd;
index f57c50570a68c7a0f18094cb7a59dc46dd3c6e04..7e50e75078017072a8fe18708aa861b1cfbe0730 100644 (file)
@@ -39,7 +39,6 @@ FUSE_3.0 {
                fuse_session_new;
                fuse_main_real;
                fuse_mount;
-               fuse_custom_session_fd;
                fuse_session_mount;
                fuse_new;
                fuse_opt_insert_arg;