1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 04:50:45 +00:00
falk-werner_webfuse-provider/include/wsfs/server_config.h

36 lines
606 B
C
Raw Normal View History

#ifndef WSFS_SERVER_CONFIG_H
#define WSFS_SERVER_CONFIG_H
#include "wsfs/api.h"
struct wsfs_server_config
{
char * mount_point;
char * document_root;
char * key_path;
char * cert_path;
char * vhost_name;
int port;
};
#ifdef __cplusplus
extern "C"
{
#endif
extern WSFS_API void wsfs_server_config_init(
struct wsfs_server_config * config);
extern WSFS_API void wsfs_server_config_cleanup(
struct wsfs_server_config * config);
extern WSFS_API void wsfs_server_config_clone(
struct wsfs_server_config * config,
struct wsfs_server_config * clone);
#ifdef __cplusplus
}
#endif
#endif