1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 22:10:45 +00:00
falk-werner_webfuse-provider/lib/wsfs/operation/close.c

22 lines
547 B
C
Raw Normal View History

2019-01-29 22:47:08 +00:00
#include "wsfs/operations.h"
#include <limits.h>
2019-02-03 18:10:05 +00:00
#include <errno.h>
2019-01-29 22:47:08 +00:00
#include <jansson.h>
2019-02-03 18:10:05 +00:00
2019-02-09 02:08:02 +00:00
#include "wsfs/jsonrpc/server.h"
2019-02-03 18:10:05 +00:00
#include "wsfs/util.h"
2019-01-29 22:47:08 +00:00
2019-02-03 18:10:05 +00:00
void wsfs_operation_close(
fuse_req_t request,
fuse_ino_t inode,
2019-01-29 22:47:08 +00:00
struct fuse_file_info * file_info)
{
2019-02-03 18:10:05 +00:00
struct wsfs_operations_context * user_data = fuse_req_userdata(request);
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server * rpc = user_data->rpc;
2019-01-29 22:47:08 +00:00
int handle = (int) (file_info->fh & INT_MAX);
wsfs_jsonrpc_server_notify(rpc, "close", "iii", inode, handle, file_info->flags);
fuse_reply_err(request, 0);
2019-01-29 22:47:08 +00:00
}