2019-02-25 19:17:13 +00:00
|
|
|
#include "wsfs/provider/operation/lookup_intern.h"
|
2019-02-24 17:03:22 +00:00
|
|
|
#include <stdio.h>
|
2019-02-25 19:17:13 +00:00
|
|
|
#include "wsfs/provider/operation/error.h"
|
2019-02-24 17:03:22 +00:00
|
|
|
|
|
|
|
void wsfsp_lookup(
|
|
|
|
struct wsfsp_invokation_context * context,
|
|
|
|
json_t * params,
|
|
|
|
int id)
|
|
|
|
{
|
|
|
|
(void) context;
|
|
|
|
(void) params;
|
|
|
|
(void) id;
|
|
|
|
|
|
|
|
puts("lookup");
|
|
|
|
}
|
|
|
|
|
|
|
|
void wsfsp_respond_lookup(
|
|
|
|
struct wsfsp_request * request,
|
|
|
|
struct stat const * stat)
|
|
|
|
{
|
|
|
|
(void) request;
|
|
|
|
(void) stat;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-02-24 18:16:29 +00:00
|
|
|
void wsfsp_lookup_default(
|
|
|
|
struct wsfsp_request * request,
|
|
|
|
ino_t parent,
|
|
|
|
char const * name,
|
|
|
|
void * user_data)
|
|
|
|
{
|
|
|
|
(void) parent;
|
|
|
|
(void) name;
|
|
|
|
(void) user_data;
|
|
|
|
|
|
|
|
wsfsp_respond_error(request, -1);
|
|
|
|
}
|
|
|
|
|