#include "webfuse_adapter.h" #include "webfuse/adapter/impl/server.h" #include "webfuse/adapter/impl/server_protocol.h" #include "webfuse/adapter/impl/server_config.h" #include "webfuse/adapter/impl/credentials.h" #include "webfuse/adapter/impl/mountpoint.h" #include "webfuse/core/util.h" // server struct wf_server * wf_server_create( struct wf_server_config * config) { return wf_impl_server_create(config); } void wf_server_dispose( struct wf_server * server) { wf_impl_server_dispose(server); } void wf_server_service( struct wf_server * server, int WF_UNUSED_PARAM(imeout_ms)) { wf_impl_server_service(server); } void wf_server_interrupt( struct wf_server * server) { wf_impl_server_interrupt(server); } // server protocol struct wf_server_protocol * wf_server_protocol_create( char * mount_point) { return wf_impl_server_protocol_create(mount_point); } struct wf_server_protocol * wf_server_protocol_create2( wf_create_mountpoint_fn * create_mountpoint, void * create_mountpoint_context) { return wf_impl_server_protocol_create2(create_mountpoint, create_mountpoint_context); } void wf_server_protocol_dispose( struct wf_server_protocol * protocol) { wf_impl_server_protocol_dispose(protocol); } void wf_server_protocol_init_lws( struct wf_server_protocol * protocol, struct lws_protocols * lws_protocol) { wf_impl_server_protocol_init_lws(protocol, lws_protocol); } void wf_server_protocol_add_authenticator( struct wf_server_protocol * protocol, char const * type, wf_authenticate_fn * authenticate, void * user_data) { wf_impl_server_protocol_add_authenticator(protocol, type, authenticate, user_data); } // server_config struct wf_server_config * wf_server_config_create(void) { return wf_impl_server_config_create(); } void wf_server_config_dispose( struct wf_server_config * config) { wf_impl_server_config_dispose(config); } void wf_server_config_set_mountpoint( struct wf_server_config * config, char const * mount_point) { wf_impl_server_config_set_mountpoint(config, mount_point); } void wf_server_config_set_mountpoint_factory( struct wf_server_config * config, wf_create_mountpoint_fn * create_mountpoint, void * user_data) { wf_impl_server_config_set_mountpoint_factory( config, create_mountpoint, user_data); } void wf_server_config_set_documentroot( struct wf_server_config * config, char const * document_root) { wf_impl_server_config_set_documentroot(config, document_root); } void wf_server_config_set_keypath( struct wf_server_config * config, char const * key_path) { wf_impl_server_config_set_keypath(config, key_path); } void wf_server_config_set_certpath( struct wf_server_config * config, char const * cert_path) { wf_impl_server_config_set_certpath(config, cert_path); } void wf_server_config_set_vhostname( struct wf_server_config * config, char const * vhost_name) { wf_impl_server_config_set_vhostname(config, vhost_name); } void wf_server_config_set_port( struct wf_server_config * config, int port) { wf_impl_server_config_set_port(config, port); } void wf_server_config_add_authenticator( struct wf_server_config * config, char const * type, wf_authenticate_fn * authenticate, void * user_data) { wf_impl_server_config_add_authenticator(config, type, authenticate, user_data); } // credentials char const * wf_credentials_type( struct wf_credentials const * credentials) { return wf_impl_credentials_type(credentials); } char const * wf_credentials_get( struct wf_credentials const * credentials, char const * key) { return wf_impl_credentials_get(credentials, key); } // mountpoint struct wf_mountpoint * wf_mountpoint_create( char const * path) { return wf_impl_mountpoint_create(path); } void wf_mountpoint_dispose( struct wf_mountpoint * mountpoint) { wf_impl_mountpoint_dispose(mountpoint); } char const * wf_mountpoint_get_path( struct wf_mountpoint const * mountpoint) { return wf_impl_mountpoint_get_path(mountpoint); } void wf_mountpoint_set_userdata( struct wf_mountpoint * mountpoint, void * user_data, wf_mountpoint_userdata_dispose_fn * dispose) { wf_impl_mountpoint_set_userdata(mountpoint, user_data, dispose); }