1
0
mirror of https://github.com/falk-werner/webfused synced 2026-03-02 04:09:19 +00:00

updated webfuse to 0.4.0

This commit is contained in:
Falk Werner
2020-07-05 11:19:00 +02:00
parent 6ac93184df
commit 3dbf7c4561
12 changed files with 19 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
#ifndef WFD_AUTH_AUTHENTICATOR_H
#define WFD_AUTH_AUTHENTICATOR_H
#include "webfuse/adapter/authenticate.h"
#include "webfuse/authenticate.h"
#ifdef __cplusplus
extern "C"

View File

@@ -4,7 +4,7 @@
#include "userdb/userdb.h"
#include "webfused/log/log.h"
#include <webfuse/adapter/credentials.h>
#include <webfuse/credentials.h>
#include <stdlib.h>
#include <string.h>
@@ -26,7 +26,7 @@ wfd_file_authenticator_dispose(
static bool
wfd_file_authenticator_authenticate(
struct wf_credentials * credentials,
struct wf_credentials const * credentials,
void * user_data)
{
bool result = false;

View File

@@ -3,7 +3,7 @@
#include "webfused/config/settings.h"
#include "webfused/log/log.h"
#include "webfuse/adapter/credentials.h"
#include <webfuse/credentials.h>
#include <security/pam_appl.h>
#include <stdlib.h>
@@ -73,7 +73,7 @@ wfd_pam_authenticator_dispose(
static bool
wfd_pam_authenticator_authenticate(
struct wf_credentials * credentials,
struct wf_credentials const * credentials,
void * user_data)
{
bool result = false;

View File

@@ -1,11 +1,12 @@
#include "webfused/config/config.h"
#include "webfused/config/config_intern.h"
#include "webfuse/adapter/server_config.h"
#include "webfused/auth/factory.h"
#include "webfused/auth/authenticator.h"
#include "webfused/mountpoint_factory.h"
#include "webfused/log/manager.h"
#include <webfuse/server_config.h>
#include <stdlib.h>
#include <string.h>

View File

@@ -10,7 +10,7 @@
#include <unistd.h>
#include <getopt.h>
#include <webfuse_adapter.h>
#include <webfuse/webfuse.h>
#include "webfused/config/config.h"
#include "webfused/config/factory.h"
#include "webfused/log/log.h"

View File

@@ -1,7 +1,7 @@
#include "webfused/mountpoint_factory.h"
#include "webfused/log/log.h"
#include <webfuse/adapter/mountpoint.h>
#include <webfuse/mountpoint.h>
#include <sys/stat.h>
#include <stdlib.h>

View File

@@ -1,7 +1,7 @@
#ifndef WFD_MOUNTPOINT_FACTORY_H
#define WFD_MOUNTPOINT_FACTORY_H
#include "webfuse/adapter/mountpoint_factory.h"
#include "webfuse/mountpoint_factory.h"
#ifndef __cplusplus
#include <stdbool.h>