1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00

removed service timeout die to api change of webfuse

This commit is contained in:
Falk Werner 2020-06-06 15:08:12 +02:00
parent 180329d1d2
commit 5233de2454
2 changed files with 2 additions and 6 deletions

View File

@ -11,8 +11,6 @@
#include "webfuse_provider.h" #include "webfuse_provider.h"
#define SERVICE_TIMEOUT (1 * 1000)
struct config struct config
{ {
char * url; char * url;
@ -368,7 +366,7 @@ int main(int argc, char* argv[])
while (!shutdown_requested) while (!shutdown_requested)
{ {
wfp_client_service(client, SERVICE_TIMEOUT); wfp_client_service(client);
} }
wfp_client_dispose(client); wfp_client_dispose(client);

View File

@ -7,8 +7,6 @@
#include "webfuse_provider.h" #include "webfuse_provider.h"
#include "static_filesystem.h" #include "static_filesystem.h"
#define SERVICE_TIMEOUT (1 * 1000)
struct args struct args
{ {
char const * url; char const * url;
@ -93,7 +91,7 @@ int main(int argc, char* argv[])
while (!shutdown_requested) while (!shutdown_requested)
{ {
wfp_client_service(client, SERVICE_TIMEOUT); wfp_client_service(client);
} }
wfp_client_dispose(client); wfp_client_dispose(client);