1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 15:20:44 +00:00
falk-werner_webfuse-provider/lib/wsfsp/provider.c
2019-02-17 14:31:04 +01:00

64 lines
1.0 KiB
C

#include "wsfsp/provider.h"
void wsfsp_respond_error(
struct wsfsp_request * request,
int status)
{
(void) request;
(void) status;
// ToDo: implement me
}
void wsfsp_respond_lookup(
struct wsfsp_request * request,
struct stat const * stat)
{
(void) request;
(void) stat;
// ToDo: implement me
}
void wsfsp_respond_getattr(
struct wsfsp_request * request,
struct stat const * stat)
{
(void) request;
(void) stat;
// ToDo: implement me
}
void wsfsp_respond_readdir(
struct wsfsp_request * request,
struct wsfsp_dirbuffer * dirbuffer)
{
(void) request;
(void) dirbuffer;
// ToDo: implement me
}
void wsfsp_respond_open(
struct wsfsp_request * request,
uint32_t handle)
{
(void) request;
(void) handle;
// ToDo: implement me
}
void wsfsp_respond_read(
struct wsfsp_request * request,
char const * data,
size_t length)
{
(void) request;
(void) data;
(void) length;
// ToDo: implement me
}