diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2013-06-21 18:17:27 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2013-06-21 18:17:27 +0200 |
commit | 5334a152e1272a072339fb4519de04ed4269d3ca (patch) | |
tree | ce350efe74f0ecc17fd7cc4d43ddf51d06b5a993 /include | |
parent | 39065e40e0f00528980b35b52d8f5e13759e5a59 (diff) | |
download | libfuse-5334a152e1272a072339fb4519de04ed4269d3ca.tar.gz |
libfuse: remove fuse_chan_(send|receive)
Move the fuse_chan_ops.send and .receive implementations to fuse_lowlevel.c. The abstraction wasn't actually useful and made the the splice implementation more difficult.
Remove fuse_chan_ops.send and fuse_chan_ops.receive.
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse_lowlevel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 4817747..14c4dea 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -1621,11 +1621,11 @@ void fuse_session_process_buf(struct fuse_session *se, * * @param se the session * @param buf the fuse_buf to store the request in - * @param chp pointer to the channel + * @param ch the channel * @return the actual size of the raw request, or -errno on error */ int fuse_session_receive_buf(struct fuse_session *se, struct fuse_buf *buf, - struct fuse_chan **chp); + struct fuse_chan *ch); /** * Destroy a session |