mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
36 lines
608 B
C
36 lines
608 B
C
|
#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
|