mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
36 lines
633 B
C
36 lines
633 B
C
#ifndef WSFS_ADAPTER_SERVER_CONFIG_H
|
|
#define WSFS_ADAPTER_SERVER_CONFIG_H
|
|
|
|
#include "wsfs/adapter/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 WSFSA_API void wsfs_server_config_init(
|
|
struct wsfs_server_config * config);
|
|
|
|
extern WSFSA_API void wsfs_server_config_cleanup(
|
|
struct wsfs_server_config * config);
|
|
|
|
extern WSFSA_API void wsfs_server_config_clone(
|
|
struct wsfs_server_config * config,
|
|
struct wsfs_server_config * clone);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|