1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/lib/wsfsp/operation/getattr.c

39 lines
639 B
C
Raw Normal View History

2019-02-24 17:03:22 +00:00
#include "wsfsp/operation/getattr_intern.h"
#include <stdio.h>
#include "wsfsp/operation/error.h"
2019-02-24 17:03:22 +00:00
void wsfsp_getattr(
struct wsfsp_invokation_context * context,
json_t * params,
int id)
{
(void) context;
(void) params;
(void) id;
puts("getattr");
}
void wsfsp_getattr_default(
struct wsfsp_request * request,
ino_t inode,
void * user_data)
{
(void) inode;
(void) user_data;
wsfsp_respond_error(request, -1);
}
2019-02-24 17:03:22 +00:00
void wsfsp_respond_getattr(
struct wsfsp_request * request,
struct stat const * stat)
{
(void) request;
(void) stat;
// ToDo: implement me
}