mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
144 lines
3.5 KiB
C
144 lines
3.5 KiB
C
#include "wsfs_adapter.h"
|
|
|
|
#include "wsfs/adapter/impl/server.h"
|
|
#include "wsfs/adapter/impl/server_protocol.h"
|
|
#include "wsfs/adapter/impl/server_config.h"
|
|
#include "wsfs/adapter/impl/credentials.h"
|
|
#include "wsfs/adapter/impl/authenticate.h"
|
|
|
|
// server
|
|
|
|
struct wsfs_server * wsfs_server_create(
|
|
struct wsfs_server_config * config)
|
|
{
|
|
return (struct wsfs_server *) server_create((struct server_config*) config);
|
|
}
|
|
|
|
void wsfs_server_dispose(
|
|
struct wsfs_server * server)
|
|
{
|
|
server_dispose((struct server *) server);
|
|
}
|
|
|
|
void wsfs_server_run(
|
|
struct wsfs_server * server)
|
|
{
|
|
server_run((struct server *) server);
|
|
}
|
|
|
|
void wsfs_server_shutdown(
|
|
struct wsfs_server * server)
|
|
{
|
|
server_shutdown((struct server *) server);
|
|
}
|
|
|
|
// server protocol
|
|
|
|
struct wsfs_server_protocol * wsfs_server_protocol_create(
|
|
char * mount_point)
|
|
{
|
|
return (struct wsfs_server_protocol *) server_protocol_create(mount_point);
|
|
}
|
|
|
|
void wsfs_server_protocol_dispose(
|
|
struct wsfs_server_protocol * protocol)
|
|
{
|
|
server_protocol_dispose((struct server_protocol *) protocol);
|
|
}
|
|
|
|
void wsfs_server_protocol_init_lws(
|
|
struct wsfs_server_protocol * protocol,
|
|
struct lws_protocols * lws_protocol)
|
|
{
|
|
server_protocol_init_lws((struct server_protocol *) protocol, lws_protocol);
|
|
}
|
|
|
|
void wsfs_server_protocol_add_authenticator(
|
|
struct wsfs_server_protocol * protocol,
|
|
char const * type,
|
|
wsfs_authenticate_fn * authenticate,
|
|
void * user_data)
|
|
{
|
|
server_protocol_add_authenticator((struct server_protocol *) protocol,
|
|
type, (authenticate_fn*) authenticate, user_data);
|
|
}
|
|
|
|
// server_config
|
|
|
|
struct wsfs_server_config * wsfs_server_config_create(void)
|
|
{
|
|
return (struct wsfs_server_config*) server_config_create();
|
|
}
|
|
|
|
void wsfs_server_config_dispose(
|
|
struct wsfs_server_config * config)
|
|
{
|
|
server_config_dispose((struct server_config*) config);
|
|
}
|
|
|
|
void wsfs_server_config_set_mountpoint(
|
|
struct wsfs_server_config * config,
|
|
char const * mount_point)
|
|
{
|
|
server_config_set_mountpoint((struct server_config*) config, mount_point);
|
|
}
|
|
|
|
void wsfs_server_config_set_documentroot(
|
|
struct wsfs_server_config * config,
|
|
char const * document_root)
|
|
{
|
|
server_config_set_documentroot((struct server_config*) config, document_root);
|
|
}
|
|
|
|
void wsfs_server_config_set_keypath(
|
|
struct wsfs_server_config * config,
|
|
char const * key_path)
|
|
{
|
|
server_config_set_keypath((struct server_config*) config, key_path);
|
|
}
|
|
|
|
void wsfs_server_config_set_certpath(
|
|
struct wsfs_server_config * config,
|
|
char const * cert_path)
|
|
{
|
|
server_config_set_certpath((struct server_config*) config, cert_path);
|
|
}
|
|
|
|
void wsfs_server_config_set_vhostname(
|
|
struct wsfs_server_config * config,
|
|
char const * vhost_name)
|
|
{
|
|
server_config_set_vhostname((struct server_config*) config, vhost_name);
|
|
}
|
|
|
|
void wsfs_server_config_set_port(
|
|
struct wsfs_server_config * config,
|
|
int port)
|
|
{
|
|
server_config_set_port((struct server_config*) config, port);
|
|
}
|
|
|
|
void wsfs_server_config_add_authenticator(
|
|
struct wsfs_server_config * config,
|
|
char const * type,
|
|
wsfs_authenticate_fn * authenticate,
|
|
void * user_data)
|
|
{
|
|
server_config_add_authenticator((struct server_config*) config, type, (authenticate_fn*) authenticate, user_data);
|
|
}
|
|
|
|
// credentials
|
|
|
|
char const * wsfs_credentials_type(
|
|
struct wsfs_credentials const * credentials)
|
|
{
|
|
return credentials_type((struct credentials *) credentials);
|
|
}
|
|
|
|
char const * wsfs_credentials_get(
|
|
struct wsfs_credentials const * credentials,
|
|
char const * key)
|
|
{
|
|
return credentials_get((struct credentials *) credentials, key);
|
|
}
|