1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 23:30:51 +00:00
falk-werner_webfuse-provider/lib/wsfs/server_protocol_intern.h

27 lines
672 B
C
Raw Normal View History

#ifndef _WSFS_SERVER_PROTOCOL_INTERN_H
#define _WSFS_SERVER_PROTOCOL_INTERN_H
#include "wsfs/server_protocol.h"
#include "wsfs/filesystem.h"
2019-02-09 02:08:02 +00:00
#include "wsfs/message_queue.h"
#include "wsfs/jsonrpc/server.h"
2019-02-09 18:02:53 +00:00
#include "wsfs/time/timeout_manager.h"
struct wsfs_server_protocol
{
2019-02-09 18:02:53 +00:00
struct wsfs_timeout_manager timeout_manager;
struct wsfs_filesystem filesystem;
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_server rpc;
struct wsfs_message_queue queue;
struct lws * wsi;
};
2019-02-09 02:08:02 +00:00
extern bool wsfs_server_protocol_init(
struct wsfs_server_protocol * protocol,
char * mount_point);
extern void wsfs_server_protocol_cleanup(
struct wsfs_server_protocol * protocol);
#endif