1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 13:20:46 +00:00
falk-werner_webfuse-provider/src/wsfs/operation/open.c

23 lines
495 B
C
Raw Normal View History

2019-01-29 22:11:46 +00:00
#include "wsfs/operations.h"
#include <jansson.h>
#include "wsfs/jsonrpc.h"
int wsfs_operation_open(
char const *path,
struct fuse_file_info * file_info)
{
struct fuse_context * context = fuse_get_context();
struct wsfs_jsonrpc * rpc = context->private_data;
json_t * result = NULL;
wsfs_status const status = wsfs_jsonrpc_invoke(rpc, &result, "open", "si", path, file_info->flags);
if (NULL != result)
{
// unused
json_decref(result);
}
return wsfs_status_to_rc(status);
}