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:
parent
180329d1d2
commit
5233de2454
@ -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);
|
||||||
|
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user